blob: f93b19794e48f4af55092f834cb4fd948f3e1962 (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
:root {
--column-width: 80ch;
}
img {
max-width: 100%;
}
a.skip-main {
left: 0;
position: absolute;
}
a.skip-main:not(:focus) {
clip: rect(0 0 0 0);
clip-path: inset(50%);
height: 1px;
overflow: hidden;
white-space: nowrap;
width: 1px;
}
nav ul, nav ul li {
display: inline-block;
}
footer {
padding-top: 1.5rem;
}
nav.breadcrumb {
padding: 0 .5rem;
}
.breadcrumb ol {
display: flex;
flex-wrap: wrap;
list-style: none;
text-transform: none !important;
margin: 0;
padding: 0;
}
.breadcrumb li:not(:last-child)::after {
display: inline-block;
margin: 0 .25rem;
content: "→";
}
a.nav-up::before {
content: "↑ ";
}
a.nav-prev::after {
content: " →"
}
a.nav-next::before {
content: "← "
}
h2, .toc-collapse {
text-align: initial;
}
h2::before, h3::before, h4::before, h5::before, h6::before {
content: "§ ";
}
|