about summary refs log tree commit diff
path: root/assets/css/theme.css
blob: 22400e94cf37abc7cc464c0d6e9875c27047a6bb (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
:root {
    --column-width: 80ch;
}

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: "← "
}

.toc-collapse {
    text-align: initial;
}