blob: 769153e111c13c2096246f567236f6c7141584a2 (
plain)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
html, body {
padding: 0;
margin: 0;
background-color: var(--bg);
color: var(--fg);
hyphens: auto;
}
.block { display: block; }
.contentWrapper a.nolink {
color: unset;
}
.contentWrapper a:not(.nolink) {
color: var(--links);
position: relative;
display: inline-block;
}
.contentWrapper a {
text-decoration: none;
}
.contentWrapper a:not(.nolink)::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
height: 1px;
width: 0%;
transition: width;
transition-duration: 150ms;
background-color: var(--links);
}
.contentWrapper a:hover::after {
width: 100%;
}
::-webkit-scrollbar {
width: 12px;
height: 12px;
}
::-webkit-scrollbar-thumb {
border-radius: 6px;
border: 4px solid var(--bg);
}
:focus { outline: none; }
li {
margin-bottom: 6px;
}
.icon svg {
width: 24px;
height: 24px;
fill: currentColor;
}
|