blob: f9a1c56d9ef8bd87d6eab68e388e869dd44d3c1d (
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
:root {
--bg: #e1e2e7;
--fg: #32344a;
--title: #7aa2f7;
--subtitle: #449dab;
--link: #ad80f6;
--regularfont: system-ui;
--titlecodefont: 'Courier New', Courier, monospace;
}
@media (prefers-color-scheme: dark) {
:root {
--fg: #a9b1d6;
--bg: #1a1b26;
--title: #ad8ee6;
--link: #7aa2f7;
--subtitle: #0db9d7;
}
}
body {
width: 90%;
max-width: 45em;
margin: 1.5em auto;
background: var(--bg);
color: var(--fg);
font-family: var(--regularfont);
}
pre {
padding: 1em 1em;
line-break: auto;
}
a {
color: var(--link);
}
.finaline {
display: flex;
justify-content: space-between;
align-items: center;
}
.notfound > h1 {
font-size: 15em;
}
.notfound {
text-align: center;
}
h1, h2, h3, pre {
font-family: var(--titlecodefont);
}
h1 {
font-size: 2.3em;
margin: 0.32em 0em 0em 0em;
color: var(--title);
}
h2 {
color: var(--subtitle);
}
hr {
color: var(--fg);
}
.columns {
columns: 2;
}
.columns ul {
margin-top: 0em;
}
.block {
break-inside: avoid;
}
ul {
padding: 0 0 0 1em;
}
li {
margin: 0 0 0.1em 0;
}
footer {
text-align: center;
}
footer img {
margin: auto;
display: inline-block;
}
img {
display: block;
margin: auto;
max-height: 25em;
width: auto;
max-width: 100%;
}
@media print {
.no-print,
.no-print *,
footer {
display: none !important;
}
.address {
overflow: visible;
white-space: wrap;
word-break: break-all;
}
}
@media only screen and (max-width: 768px) {
body {
width: 90%;
font-size: 1.1em;
}
.columns {
columns: 1;
}
}
|