blob: 14b450b1cb3aa5a19189f2592ac543f9cb79d10e (
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
|
:root {
--light: #eee;
--dark: #1c1c1c;
--highlight: #ff3a21
}
body {
color: var(--light);
background: var(--dark);
font-family: monospace;
font-size: 16px;
}
#navigation {
text-align: center;
}
.centered {
text-align: center;
}
#content {
width: 700px;
max-width: 100%;
margin: auto;
}
a {
color: var(--highlight);
}
a:hover {
color: var(--dark);
background: var(--highlight);
text-decoration: none;
}
ul {
list-style: none;
}
li:before {
content: '* ';
}
code {
background: black;
padding: 0 6px;
border-radius: 4px;
}
|