-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
48 lines (43 loc) · 909 Bytes
/
index.css
File metadata and controls
48 lines (43 loc) · 909 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
body {
display: flex;
flex-direction: row;
justify-content: center;
flex-wrap: nowrap;
align-items: center;
font-family: monospace;
font-size: 32px;
}
@keyframes loading {
0% {
content: ".";
}
33.3% {
content: "..";
}
66.6% {
content: "...";
}
100% {
content: ".";
}
}
body:not(:has(span#name))>span:first-of-type:after {animation: loading 1s linear 0s infinite forwards; content: "";}
body:has(span#name)>span:first-of-type:after {content: " to ";}
body>span:first-of-type::after {white-space: pre;}
@media (prefers-color-scheme: dark) {
body {
background-color: #0F0F0F;
color: #F0F0F0;
}
}
@media (prefers-color-scheme: light) {
body {
background-color: #F0F0F0;
color: #0F0F0F;
}
}
uwu {
position: absolute;
bottom: 10px;
font-size: max(2vh,1vw);
}