blob: c22d26cf5375c615c9fa01c80f40f90f8c5e04b0 (
plain) (
blame)
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
|
body {
font-family: "Helvetica Neue", "Ninbus Sans", Helvetica, Arial, sans;
font-size: 11.5pt;
margin: auto;
padding: 1em;
padding-stop: 0.25em;
max-width: 80ch;
}
code {
font-family: "DejaVu Sans Mono", Consolas, monospace;
font-size: 10pt;
}
footer {
color: #333;
font-size: 9pt;
}
.navbar ul {
display: inline-flex;
flex-wrap: wrap;
list-style-type: none;
margin: 0;
padding: 0;
}
.navbar ul li {
display: list-item;
padding: 6px;
}
.navbar ul li:hover {
background-color: #eeeeee;
}
|