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