blob: e312c34ed96a231370bc02e12b892fa5bf6f8f5d (
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
64
65
66
67
68
69
70
71
72
73
74
|
:root {
--color-text: #222;
--color-navbar-bg: #0a0a0a;
--color-navbar-bg-focus: #000;
--color-navbar-text: #fff;
}
html,
body {
height: 100%;
}
*,
*::before,
*::after {
box-sizing: inherit;
}
html {
box-sizing: border-box;
font-family: "Roboto", sans-serif;
font-size: 1.1em;
text-size-adjust: 100%;
}
@media screen and (min-width: 1024px) {
html {
font-size: 1.2em;
}
}
body {
color: var(--color-text);
line-height: 1.6;
margin: 0;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
code,
kbd,
pre {
font-family: "Roboto Mono", monospace;
}
b,
dt,
strong,
th {
font-weight: 500;
}
::-webkit-scrollbar {
width: 0.3333rem;
height: 0.3333rem;
}
::-webkit-scrollbar-track {
background-color: #f0f0f0;
}
::-webkit-scrollbar-thumb {
background-color: #c1c1c1;
}
::-webkit-scrollbar-thumb:window-inactive {
background: transparent;
}
|