summaryrefslogtreecommitdiff
path: root/style.css
blob: d9fe494313d409d8687985bb8984fc37bf43c5c6 (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
:root {
    color-scheme: light dark;
}
html {
    font-size: 100%;
}
body {
    margin: 0 auto;
    padding: 0;
    max-width: 650px;
    font-family: system-ui, sans-serif;
    font-weight: normal;
}
main {
    margin: 0 1rem;
}
header {
    padding: 0.5rem 1rem;
    color: ButtonText;
    background-color: ButtonFace;
}
header nav {
    display: inline-block;
}
header span {
    margin-right: 10px;
}
section header {
    font-style: italic;
}
nav ul {
    list-style-type: none;
    border-left: 1px solid ButtonText;
    margin: 0;
    padding: 0;
}
nav ul li {
    display: inline-block;
    border-right: 1px solid ButtonText;
    padding: 2px 10px;
    margin: 0;
}
nav ul li a,
nav ul li a:visited {
    color: ButtonText;
}
li {
    margin-left: 1rem;
}
p {
    margin: 1rem 0;
    line-height: 1.5rem;
}
sup {
    font-size: .75rem;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    top: -0.5em;
}
img {
    width: 100%;
    height: auto;
}
figure {
    margin: 1rem 4rem;
}
aside {
    color: ButtonText;
    padding: 1rem;
    border: 1px solid ButtonText;
    background-color: ButtonFace;
    font-style: italic;
}
.footnotes {
    font-size: smaller;
}
.footnotes li {
    margin-left: 0;
}