Skip to content

Commit f69e53d

Browse files
committed
tmp
1 parent 051eb1b commit f69e53d

File tree

5 files changed

+131
-15
lines changed

5 files changed

+131
-15
lines changed

_config.yml

Lines changed: 0 additions & 4 deletions
This file was deleted.

_includes/head-custom.html

Lines changed: 0 additions & 3 deletions
This file was deleted.

index.html

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
<!doctype html>
2+
<html lang=en>
3+
4+
<head>
5+
<meta charset=utf-8>
6+
<meta name=viewport content="width=device-width, initial-scale=1">
7+
<link rel=stylesheet href=main.css>
8+
<meta name=color-scheme content="light dark">
9+
<link rel=icon type=image/xml+svg href=i.svg>
10+
<title>Rudxain : 🏠 Home</title>
11+
<meta name=description content="About me, my accounts, and sites.">
12+
<link rel=canonical href=https://rudxain.github.io>
13+
<meta property=og:locale content=en>
14+
<meta property=og:title content="Rudxain Sites">
15+
<meta property=og:description content="About me, my accounts, and sites.">
16+
<meta property=og:url content=https://rudxain.github.io>
17+
<meta property=og:site_name content="Rudxain @ GHP">
18+
<meta property=og:type content=website>
19+
</head>
20+
21+
<body>
22+
<header>
23+
<h1>
24+
<code>
25+
<span style=color:red>rud</span><span style=color:cyan>xain</span>
26+
@ <a href=https://docs.github.com/en/pages>GHP</a>
27+
: ~ Δ <span class=blink title="Sorry, you can't type cmds here (yet)">_</span>
28+
</code>
29+
</h1>
30+
</header>
31+
32+
<main>
33+
<p>Welcome to my humble domain!</p>
34+
<p>
35+
Most of the following sites don't support <code>color-scheme:dark</code> yet.
36+
I'm truly sorry for that! The default Jekyll themes are either all-dark or all-light.
37+
</p>
38+
39+
<ul>
40+
<li><a href=./about>ℹ️ About</a></li>
41+
<li><a href=https://Rudxain.github.io/RX-wiki>📖 Wiki</a></li>
42+
<li><a href=https://Rudxain.github.io/blog>📓 Blog</a></li>
43+
<li><a href=https://Rudxain.github.io/bookmarks>⭐️ bookmarks</a></li>
44+
<li><a href=https://Rudxain.github.io/RGB-digital-rain>🕴 The Matrix Digital Rain but RGB</a></li>
45+
<li><a href=https://Rudxain.github.io/random-creeper-generator>Random Creeper face generator</a></li>
46+
</ul>
47+
<p>Unlike most other domains, this one:</p>
48+
<ul>
49+
<li>🔒 Works flawlessly in <a href=https://github.com/gorhill/uBlock/wiki/Blocking-mode:-hard-mode>
50+
<abbr title=uBlock-Origin>uBO</abbr>:HM</a></li>
51+
<li>❤️‍🩹 Is friendly to no-script users</li>
52+
<li>⚡ Is <small>(mostly)</small>
53+
<a href=https://github.com/lyoshenka/awesome-motherfucking-website>anti-bloat</a>
54+
</li>
55+
<li>🧑 Is written manually by a human, thanks to
56+
<code><a href=https://helix-editor.com>hx</a></code>.
57+
<small>But I'm not anti-AI nor hate <abbr title="Static Site Generator">SSG</abbr>s</small>
58+
</li>
59+
</ul>
60+
<p>So if
61+
<a href=https://idlewords.com/talks/website_obesity.htm>your computer is on a diet</a>,
62+
it'll stay healthy! 🥗
63+
</p>
64+
</main>
65+
66+
<footer>
67+
<p>
68+
<a href=https://github.com/Rudxain/Rudxain.github.io>GH source</a>
69+
</p>
70+
</footer>
71+
</body>
72+
73+
</html>

index.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

main.css

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
html {
2+
font-family: sans-serif;
3+
zoom: 1.5;
4+
background: linear-gradient(to bottom right, #0ff7, #0000, #f007) fixed;
5+
}
6+
7+
body {
8+
margin: 0;
9+
padding: 0.5% 5%;
10+
}
11+
12+
a {
13+
color: #06f;
14+
}
15+
16+
a:visited {
17+
color: #30e;
18+
}
19+
20+
/* a:hover,
21+
a:focus {
22+
transform: ;
23+
} */
24+
25+
code {
26+
background: #7774;
27+
}
28+
29+
@media (prefers-color-scheme: dark) {
30+
html {
31+
background-color: #000;
32+
}
33+
34+
a {
35+
color: #7f3;
36+
}
37+
38+
a:visited {
39+
color: #1a0;
40+
}
41+
}
42+
43+
@media (prefers-reduced-motion: no-preference) {
44+
.blink {
45+
animation: blink step-end 1s infinite;
46+
}
47+
48+
@keyframes blink {
49+
50% {
50+
opacity: 0;
51+
}
52+
}
53+
}
54+
55+
small {
56+
font-size: 75%;
57+
opacity: 0.5;
58+
}

0 commit comments

Comments
 (0)