blob: 449132f40ebaa733b684760e4bdd744857f189a6 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
|
html {
font-family: monospace;
}
body {
max-width: 130ch;
margin: auto;
padding: 1em 1ch;
}
h1 {
margin: 0;
}
nav {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
margin-bottom: 1em;
}
nav ol {
margin: 1em 1ch 0 0;
padding: 0;
list-style-type: none;
}
nav ol li {
display: inline;
}
nav ol li::before {
content: '/';
}
nav form {
margin-top: 1em;
}
footer {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
footer span[title] {
text-decoration: underline;
text-decoration-style: dotted;
cursor: help;
}
|