-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.css
More file actions
55 lines (47 loc) · 727 Bytes
/
index.css
File metadata and controls
55 lines (47 loc) · 727 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
49
50
51
52
53
54
55
:root {
font-family:
system-ui,
-apple-system,
sans-serif;
line-height: 1.6;
color: #213547;
background-color: #ffffff;
}
@media (prefers-color-scheme: dark) {
:root {
color: #ffffffde;
background-color: #242424;
}
a {
color: #6db3f2;
}
}
body {
max-width: 720px;
margin: 0 auto;
padding: 2rem;
}
nav {
padding-bottom: 1rem;
margin-bottom: 2rem;
border-bottom: 1px solid #ddd;
}
@media (prefers-color-scheme: dark) {
nav {
border-bottom-color: #444;
}
}
nav a {
margin: 0 0.25rem;
}
code {
background: #f4f4f4;
padding: 0.15em 0.3em;
border-radius: 3px;
font-size: 0.9em;
}
@media (prefers-color-scheme: dark) {
code {
background: #333;
}
}