blob: 7158c5283273a8e8630d8c01cb5e210cd92a542b (
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
|
body {
margin: auto;
padding-right: 1em;
padding-left: 1em;
font: normal 1.1em/1.3em monospace;
max-width: 60em;
text-align: justify;
}
.display-math {
display: block;
margin-top: 0.2em;
margin-bottm: 0.2em;
text-align: center;
}
.inline-math {
display: inline;
}
a {
color: inherit;
}
p {
margin-bottom: 0
}
p + p {
text-indent: 1.5em;
margin-top: 0
}
nav#top-level {
border-bottom: 1px solid grey;
border-top: 1px solid grey;
display: table;
text-align: center;
width: 100%;
}
nav#top-level ul {
display: table-row;
}
nav#top-level ul li {
display: table-cell;
}
nav#top-level ul li a {
display: inline-block;
width: 100%;
text-align: center;
text-decoration: none;
color: inherit;
text-transform: uppercase;
}
nav#top-level ul li a:hover {
display: inline-block;
width: 100%;
text-align: center;
background: lightgrey;
}
|