blob: cd9c1d6e4fb60aebf01eca8591848d86601ab3c2 (
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
|
:root {
--background: #1c1b22;
--foreground: #dddddd;
}
html {
color-scheme: dark;
}
body {
background-color: var(--background);
color: var(--foreground);
}
a {
color: #99f;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
h1#indextitle {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
margin-bottom: 0;
}
tr, th, td {
font-family: monospace;
font-size: 12pt;
padding: 0 5px;
}
address {
font-family: sans-serif;
font-size: 12pt
}
|