blob: c7fdf59a326c79b3a96a3a337ef596d2db127532 (
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
|
@font-face {
font-family: "Open Sans";
src: url("/static/fonts/OpenSans/OpenSans-VariableFont_wdth,wght.ttf") format("truetype-variations");
font-weight: 100 1000;
}
@font-face {
font-family: "Open Sans";
src: url("/static/fonts/OpenSans/OpenSans-Italic-VariableFont_wdth,wght.ttf") format("truetype-variations");
font-style: italic;
font-weight: 100 1000;
}
:root {
font-family: "Open Sans", sans-serif;
}
body {
background-color: black;
color: white;
}
a:visited {
color:violet;
}
a:link, a.no-visited-indication {
color: lightskyblue;
}
table {
width: 100%;
border-collapse: collapse;
border: 1px solid white;
}
th, td {
border: 1px solid white;
}
span.tag {
background-color: lightgreen;
color: black;
}
.hover-help {
cursor: help;
user-select: none;
padding-left: 0.2em;
}
@media (pointer: coarse), (hover: none) {
div.side-by-side-help-container {
display: table-row;
}
div.side-by-side-help-container > * {
display: table-cell;
}
div.side-by-side-help-container > .hover-help:focus::after {
content: attr(title);
font-size: small;
padding-left: 0.2em;
}
}
|