Blame


1 1c1e3e26 2022-09-08 op /* $OpenBSD: mandoc.css,v 1.39 2022/07/06 14:27:55 schwarze Exp $ */
2 1c1e3e26 2022-09-08 op /*
3 1c1e3e26 2022-09-08 op * Standard style sheet for mandoc(1) -Thtml and man.cgi(8).
4 1c1e3e26 2022-09-08 op *
5 1c1e3e26 2022-09-08 op * Written by Ingo Schwarze <schwarze@openbsd.org>.
6 1c1e3e26 2022-09-08 op * I place this file into the public domain.
7 1c1e3e26 2022-09-08 op * Permission to use, copy, modify, and distribute it for any purpose
8 1c1e3e26 2022-09-08 op * with or without fee is hereby granted, without any conditions.
9 1c1e3e26 2022-09-08 op */
10 1c1e3e26 2022-09-08 op
11 1c1e3e26 2022-09-08 op /* Global defaults. */
12 1c1e3e26 2022-09-08 op
13 1c1e3e26 2022-09-08 op html { max-width: 65em;
14 1c1e3e26 2022-09-08 op --bg: #FFFFFF;
15 1c1e3e26 2022-09-08 op --fg: #000000; }
16 1c1e3e26 2022-09-08 op body { background: var(--bg);
17 1c1e3e26 2022-09-08 op color: var(--fg);
18 1c1e3e26 2022-09-08 op font-family: Helvetica,Arial,sans-serif; }
19 1c1e3e26 2022-09-08 op h1, h2 { font-size: 110%; }
20 1c1e3e26 2022-09-08 op table { margin-top: 0em;
21 1c1e3e26 2022-09-08 op margin-bottom: 0em;
22 1c1e3e26 2022-09-08 op border-collapse: collapse; }
23 1c1e3e26 2022-09-08 op /* Some browsers set border-color in a browser style for tbody,
24 1c1e3e26 2022-09-08 op * but not for table, resulting in inconsistent border styling. */
25 1c1e3e26 2022-09-08 op tbody { border-color: inherit; }
26 1c1e3e26 2022-09-08 op tr { border-color: inherit; }
27 1c1e3e26 2022-09-08 op td { vertical-align: top;
28 1c1e3e26 2022-09-08 op padding-left: 0.2em;
29 1c1e3e26 2022-09-08 op padding-right: 0.2em;
30 1c1e3e26 2022-09-08 op border-color: inherit; }
31 1c1e3e26 2022-09-08 op ul, ol, dl { margin-top: 0em;
32 1c1e3e26 2022-09-08 op margin-bottom: 0em; }
33 1c1e3e26 2022-09-08 op li, dt { margin-top: 1em; }
34 1c1e3e26 2022-09-08 op pre { font-family: inherit; }
35 1c1e3e26 2022-09-08 op
36 1c1e3e26 2022-09-08 op .permalink { border-bottom: thin dotted;
37 1c1e3e26 2022-09-08 op color: inherit;
38 1c1e3e26 2022-09-08 op font: inherit;
39 1c1e3e26 2022-09-08 op text-decoration: inherit; }
40 1c1e3e26 2022-09-08 op * { clear: both }
41 1c1e3e26 2022-09-08 op
42 1c1e3e26 2022-09-08 op /* Search form and search results. */
43 1c1e3e26 2022-09-08 op
44 1c1e3e26 2022-09-08 op fieldset { border: thin solid silver;
45 1c1e3e26 2022-09-08 op border-radius: 1em;
46 1c1e3e26 2022-09-08 op text-align: center; }
47 1c1e3e26 2022-09-08 op input[name=expr] {
48 1c1e3e26 2022-09-08 op width: 25%; }
49 1c1e3e26 2022-09-08 op
50 1c1e3e26 2022-09-08 op table.results { margin-top: 1em;
51 1c1e3e26 2022-09-08 op margin-left: 2em;
52 1c1e3e26 2022-09-08 op font-size: smaller; }
53 1c1e3e26 2022-09-08 op
54 1c1e3e26 2022-09-08 op /* Header and footer lines. */
55 1c1e3e26 2022-09-08 op
56 1c1e3e26 2022-09-08 op div[role=doc-pageheader] {
57 1c1e3e26 2022-09-08 op display: flex;
58 1c1e3e26 2022-09-08 op border-bottom: 1px dotted #808080;
59 1c1e3e26 2022-09-08 op margin-bottom: 1em;
60 1c1e3e26 2022-09-08 op font-size: smaller; }
61 1c1e3e26 2022-09-08 op .head-ltitle { flex: 1; }
62 1c1e3e26 2022-09-08 op .head-vol { flex: 0 1 auto;
63 1c1e3e26 2022-09-08 op text-align: center; }
64 1c1e3e26 2022-09-08 op .head-rtitle { flex: 1;
65 1c1e3e26 2022-09-08 op text-align: right; }
66 1c1e3e26 2022-09-08 op
67 1c1e3e26 2022-09-08 op div[role=doc-pagefooter] {
68 1c1e3e26 2022-09-08 op display: flex;
69 1c1e3e26 2022-09-08 op justify-content: space-between;
70 1c1e3e26 2022-09-08 op border-top: 1px dotted #808080;
71 1c1e3e26 2022-09-08 op margin-top: 1em;
72 1c1e3e26 2022-09-08 op font-size: smaller; }
73 1c1e3e26 2022-09-08 op .foot-left { flex: 1; }
74 1c1e3e26 2022-09-08 op .foot-date { flex: 0 1 auto;
75 1c1e3e26 2022-09-08 op text-align: center; }
76 1c1e3e26 2022-09-08 op .foot-os { flex: 1;
77 1c1e3e26 2022-09-08 op text-align: right; }
78 1c1e3e26 2022-09-08 op
79 1c1e3e26 2022-09-08 op /* Sections and paragraphs. */
80 1c1e3e26 2022-09-08 op
81 1c1e3e26 2022-09-08 op main { margin-left: 3.8em; }
82 1c1e3e26 2022-09-08 op .Nd { }
83 1c1e3e26 2022-09-08 op section.Sh { }
84 1c1e3e26 2022-09-08 op h2.Sh { margin-top: 1.2em;
85 1c1e3e26 2022-09-08 op margin-bottom: 0.6em;
86 1c1e3e26 2022-09-08 op margin-left: -3.2em; }
87 1c1e3e26 2022-09-08 op section.Ss { }
88 1c1e3e26 2022-09-08 op h3.Ss { margin-top: 1.2em;
89 1c1e3e26 2022-09-08 op margin-bottom: 0.6em;
90 1c1e3e26 2022-09-08 op margin-left: -1.2em;
91 1c1e3e26 2022-09-08 op font-size: 105%; }
92 1c1e3e26 2022-09-08 op .Pp { margin: 0.6em 0em; }
93 1c1e3e26 2022-09-08 op .Sx { }
94 1c1e3e26 2022-09-08 op .Xr { }
95 1c1e3e26 2022-09-08 op
96 1c1e3e26 2022-09-08 op /* Displays and lists. */
97 1c1e3e26 2022-09-08 op
98 1c1e3e26 2022-09-08 op .Bd { }
99 1c1e3e26 2022-09-08 op .Bd-indent { margin-left: 3.8em; }
100 1c1e3e26 2022-09-08 op
101 1c1e3e26 2022-09-08 op .Bl-bullet { list-style-type: disc;
102 1c1e3e26 2022-09-08 op padding-left: 1em; }
103 1c1e3e26 2022-09-08 op .Bl-bullet > li { }
104 1c1e3e26 2022-09-08 op .Bl-dash { list-style-type: none;
105 1c1e3e26 2022-09-08 op padding-left: 0em; }
106 1c1e3e26 2022-09-08 op .Bl-dash > li:before {
107 1c1e3e26 2022-09-08 op content: "\2014 "; }
108 1c1e3e26 2022-09-08 op .Bl-item { list-style-type: none;
109 1c1e3e26 2022-09-08 op padding-left: 0em; }
110 1c1e3e26 2022-09-08 op .Bl-item > li { }
111 1c1e3e26 2022-09-08 op .Bl-compact > li {
112 1c1e3e26 2022-09-08 op margin-top: 0em; }
113 1c1e3e26 2022-09-08 op
114 1c1e3e26 2022-09-08 op .Bl-enum { padding-left: 2em; }
115 1c1e3e26 2022-09-08 op .Bl-enum > li { }
116 1c1e3e26 2022-09-08 op .Bl-compact > li {
117 1c1e3e26 2022-09-08 op margin-top: 0em; }
118 1c1e3e26 2022-09-08 op
119 1c1e3e26 2022-09-08 op .Bl-diag { }
120 1c1e3e26 2022-09-08 op .Bl-diag > dt {
121 1c1e3e26 2022-09-08 op font-style: normal;
122 1c1e3e26 2022-09-08 op font-weight: bold; }
123 1c1e3e26 2022-09-08 op .Bl-diag > dd {
124 1c1e3e26 2022-09-08 op margin-left: 0em; }
125 1c1e3e26 2022-09-08 op .Bl-hang { }
126 1c1e3e26 2022-09-08 op .Bl-hang > dt { }
127 1c1e3e26 2022-09-08 op .Bl-hang > dd {
128 1c1e3e26 2022-09-08 op margin-left: 5.5em; }
129 1c1e3e26 2022-09-08 op .Bl-inset { }
130 1c1e3e26 2022-09-08 op .Bl-inset > dt { }
131 1c1e3e26 2022-09-08 op .Bl-inset > dd {
132 1c1e3e26 2022-09-08 op margin-left: 0em; }
133 1c1e3e26 2022-09-08 op .Bl-ohang { }
134 1c1e3e26 2022-09-08 op .Bl-ohang > dt { }
135 1c1e3e26 2022-09-08 op .Bl-ohang > dd {
136 1c1e3e26 2022-09-08 op margin-left: 0em; }
137 1c1e3e26 2022-09-08 op .Bl-tag { margin-top: 0.6em;
138 1c1e3e26 2022-09-08 op margin-left: 5.5em; }
139 1c1e3e26 2022-09-08 op .Bl-tag > dt {
140 1c1e3e26 2022-09-08 op float: left;
141 1c1e3e26 2022-09-08 op margin-top: 0em;
142 1c1e3e26 2022-09-08 op margin-left: -5.5em;
143 1c1e3e26 2022-09-08 op padding-right: 0.5em;
144 1c1e3e26 2022-09-08 op vertical-align: top; }
145 1c1e3e26 2022-09-08 op .Bl-tag > dd {
146 1c1e3e26 2022-09-08 op clear: right;
147 1c1e3e26 2022-09-08 op column-count: 1; /* Force block formatting context. */
148 1c1e3e26 2022-09-08 op width: 100%;
149 1c1e3e26 2022-09-08 op margin-top: 0em;
150 1c1e3e26 2022-09-08 op margin-left: 0em;
151 1c1e3e26 2022-09-08 op margin-bottom: 0.6em;
152 1c1e3e26 2022-09-08 op vertical-align: top; }
153 1c1e3e26 2022-09-08 op .Bl-compact { margin-top: 0em; }
154 1c1e3e26 2022-09-08 op .Bl-compact > dd {
155 1c1e3e26 2022-09-08 op margin-bottom: 0em; }
156 1c1e3e26 2022-09-08 op .Bl-compact > dt {
157 1c1e3e26 2022-09-08 op margin-top: 0em; }
158 1c1e3e26 2022-09-08 op
159 1c1e3e26 2022-09-08 op .Bl-column { }
160 1c1e3e26 2022-09-08 op .Bl-column > tbody > tr { }
161 1c1e3e26 2022-09-08 op .Bl-column > tbody > tr > td {
162 1c1e3e26 2022-09-08 op margin-top: 1em; }
163 1c1e3e26 2022-09-08 op .Bl-compact > tbody > tr > td {
164 1c1e3e26 2022-09-08 op margin-top: 0em; }
165 1c1e3e26 2022-09-08 op
166 1c1e3e26 2022-09-08 op .Rs { font-style: normal;
167 1c1e3e26 2022-09-08 op font-weight: normal; }
168 1c1e3e26 2022-09-08 op .RsA { }
169 1c1e3e26 2022-09-08 op .RsB { font-style: italic;
170 1c1e3e26 2022-09-08 op font-weight: normal; }
171 1c1e3e26 2022-09-08 op .RsC { }
172 1c1e3e26 2022-09-08 op .RsD { }
173 1c1e3e26 2022-09-08 op .RsI { font-style: italic;
174 1c1e3e26 2022-09-08 op font-weight: normal; }
175 1c1e3e26 2022-09-08 op .RsJ { font-style: italic;
176 1c1e3e26 2022-09-08 op font-weight: normal; }
177 1c1e3e26 2022-09-08 op .RsN { }
178 1c1e3e26 2022-09-08 op .RsO { }
179 1c1e3e26 2022-09-08 op .RsP { }
180 1c1e3e26 2022-09-08 op .RsQ { }
181 1c1e3e26 2022-09-08 op .RsR { }
182 1c1e3e26 2022-09-08 op .RsT { text-decoration: underline; }
183 1c1e3e26 2022-09-08 op .RsU { }
184 1c1e3e26 2022-09-08 op .RsV { }
185 1c1e3e26 2022-09-08 op
186 1c1e3e26 2022-09-08 op .eqn { }
187 1c1e3e26 2022-09-08 op .tbl td { vertical-align: middle; }
188 1c1e3e26 2022-09-08 op
189 1c1e3e26 2022-09-08 op .HP { margin-left: 3.8em;
190 1c1e3e26 2022-09-08 op text-indent: -3.8em; }
191 1c1e3e26 2022-09-08 op
192 1c1e3e26 2022-09-08 op /* Semantic markup for command line utilities. */
193 1c1e3e26 2022-09-08 op
194 1c1e3e26 2022-09-08 op table.Nm { }
195 1c1e3e26 2022-09-08 op code.Nm { font-style: normal;
196 1c1e3e26 2022-09-08 op font-weight: bold;
197 1c1e3e26 2022-09-08 op font-family: inherit; }
198 1c1e3e26 2022-09-08 op .Fl { font-style: normal;
199 1c1e3e26 2022-09-08 op font-weight: bold;
200 1c1e3e26 2022-09-08 op font-family: inherit; }
201 1c1e3e26 2022-09-08 op .Cm { font-style: normal;
202 1c1e3e26 2022-09-08 op font-weight: bold;
203 1c1e3e26 2022-09-08 op font-family: inherit; }
204 1c1e3e26 2022-09-08 op .Ar { font-style: italic;
205 1c1e3e26 2022-09-08 op font-weight: normal; }
206 1c1e3e26 2022-09-08 op .Op { display: inline flow; }
207 1c1e3e26 2022-09-08 op .Ic { font-style: normal;
208 1c1e3e26 2022-09-08 op font-weight: bold;
209 1c1e3e26 2022-09-08 op font-family: inherit; }
210 1c1e3e26 2022-09-08 op .Ev { font-style: normal;
211 1c1e3e26 2022-09-08 op font-weight: normal;
212 1c1e3e26 2022-09-08 op font-family: monospace; }
213 1c1e3e26 2022-09-08 op .Pa { font-style: italic;
214 1c1e3e26 2022-09-08 op font-weight: normal; }
215 1c1e3e26 2022-09-08 op
216 1c1e3e26 2022-09-08 op /* Semantic markup for function libraries. */
217 1c1e3e26 2022-09-08 op
218 1c1e3e26 2022-09-08 op .Lb { }
219 1c1e3e26 2022-09-08 op code.In { font-style: normal;
220 1c1e3e26 2022-09-08 op font-weight: bold;
221 1c1e3e26 2022-09-08 op font-family: inherit; }
222 1c1e3e26 2022-09-08 op a.In { }
223 1c1e3e26 2022-09-08 op .Fd { font-style: normal;
224 1c1e3e26 2022-09-08 op font-weight: bold;
225 1c1e3e26 2022-09-08 op font-family: inherit; }
226 1c1e3e26 2022-09-08 op .Ft { font-style: italic;
227 1c1e3e26 2022-09-08 op font-weight: normal; }
228 1c1e3e26 2022-09-08 op .Fn { font-style: normal;
229 1c1e3e26 2022-09-08 op font-weight: bold;
230 1c1e3e26 2022-09-08 op font-family: inherit; }
231 1c1e3e26 2022-09-08 op .Fa { font-style: italic;
232 1c1e3e26 2022-09-08 op font-weight: normal; }
233 1c1e3e26 2022-09-08 op .Vt { font-style: italic;
234 1c1e3e26 2022-09-08 op font-weight: normal; }
235 1c1e3e26 2022-09-08 op .Va { font-style: italic;
236 1c1e3e26 2022-09-08 op font-weight: normal; }
237 1c1e3e26 2022-09-08 op .Dv { font-style: normal;
238 1c1e3e26 2022-09-08 op font-weight: normal;
239 1c1e3e26 2022-09-08 op font-family: monospace; }
240 1c1e3e26 2022-09-08 op .Er { font-style: normal;
241 1c1e3e26 2022-09-08 op font-weight: normal;
242 1c1e3e26 2022-09-08 op font-family: monospace; }
243 1c1e3e26 2022-09-08 op
244 1c1e3e26 2022-09-08 op /* Various semantic markup. */
245 1c1e3e26 2022-09-08 op
246 1c1e3e26 2022-09-08 op .An { }
247 1c1e3e26 2022-09-08 op .Lk { }
248 1c1e3e26 2022-09-08 op .Mt { }
249 1c1e3e26 2022-09-08 op .Cd { font-style: normal;
250 1c1e3e26 2022-09-08 op font-weight: bold;
251 1c1e3e26 2022-09-08 op font-family: inherit; }
252 1c1e3e26 2022-09-08 op .Ad { font-style: italic;
253 1c1e3e26 2022-09-08 op font-weight: normal; }
254 1c1e3e26 2022-09-08 op .Ms { font-style: normal;
255 1c1e3e26 2022-09-08 op font-weight: bold; }
256 1c1e3e26 2022-09-08 op .St { }
257 1c1e3e26 2022-09-08 op .Ux { }
258 1c1e3e26 2022-09-08 op
259 1c1e3e26 2022-09-08 op /* Physical markup. */
260 1c1e3e26 2022-09-08 op
261 1c1e3e26 2022-09-08 op .Bf { display: inline flow; }
262 1c1e3e26 2022-09-08 op .No { font-style: normal;
263 1c1e3e26 2022-09-08 op font-weight: normal; }
264 1c1e3e26 2022-09-08 op .Em { font-style: italic;
265 1c1e3e26 2022-09-08 op font-weight: normal; }
266 1c1e3e26 2022-09-08 op .Sy { font-style: normal;
267 1c1e3e26 2022-09-08 op font-weight: bold; }
268 1c1e3e26 2022-09-08 op .Li { font-style: normal;
269 1c1e3e26 2022-09-08 op font-weight: normal;
270 1c1e3e26 2022-09-08 op font-family: monospace; }
271 1c1e3e26 2022-09-08 op
272 1c1e3e26 2022-09-08 op /* Tooltip support. */
273 1c1e3e26 2022-09-08 op
274 1c1e3e26 2022-09-08 op h2.Sh, h3.Ss { position: relative; }
275 1c1e3e26 2022-09-08 op .An, .Ar, .Cd, .Cm, .Dv, .Em, .Er, .Ev, .Fa, .Fd, .Fl, .Fn, .Ft,
276 1c1e3e26 2022-09-08 op .Ic, code.In, .Lb, .Lk, .Ms, .Mt, .Nd, code.Nm, .Pa, .Rs,
277 1c1e3e26 2022-09-08 op .St, .Sx, .Sy, .Va, .Vt, .Xr {
278 1c1e3e26 2022-09-08 op display: inline flow;
279 1c1e3e26 2022-09-08 op position: relative; }
280 1c1e3e26 2022-09-08 op
281 1c1e3e26 2022-09-08 op .An::before { content: "An"; }
282 1c1e3e26 2022-09-08 op .Ar::before { content: "Ar"; }
283 1c1e3e26 2022-09-08 op .Cd::before { content: "Cd"; }
284 1c1e3e26 2022-09-08 op .Cm::before { content: "Cm"; }
285 1c1e3e26 2022-09-08 op .Dv::before { content: "Dv"; }
286 1c1e3e26 2022-09-08 op .Em::before { content: "Em"; }
287 1c1e3e26 2022-09-08 op .Er::before { content: "Er"; }
288 1c1e3e26 2022-09-08 op .Ev::before { content: "Ev"; }
289 1c1e3e26 2022-09-08 op .Fa::before { content: "Fa"; }
290 1c1e3e26 2022-09-08 op .Fd::before { content: "Fd"; }
291 1c1e3e26 2022-09-08 op .Fl::before { content: "Fl"; }
292 1c1e3e26 2022-09-08 op .Fn::before { content: "Fn"; }
293 1c1e3e26 2022-09-08 op .Ft::before { content: "Ft"; }
294 1c1e3e26 2022-09-08 op .Ic::before { content: "Ic"; }
295 1c1e3e26 2022-09-08 op code.In::before { content: "In"; }
296 1c1e3e26 2022-09-08 op .Lb::before { content: "Lb"; }
297 1c1e3e26 2022-09-08 op .Lk::before { content: "Lk"; }
298 1c1e3e26 2022-09-08 op .Ms::before { content: "Ms"; }
299 1c1e3e26 2022-09-08 op .Mt::before { content: "Mt"; }
300 1c1e3e26 2022-09-08 op .Nd::before { content: "Nd"; }
301 1c1e3e26 2022-09-08 op code.Nm::before { content: "Nm"; }
302 1c1e3e26 2022-09-08 op .Pa::before { content: "Pa"; }
303 1c1e3e26 2022-09-08 op .Rs::before { content: "Rs"; }
304 1c1e3e26 2022-09-08 op h2.Sh::before { content: "Sh"; }
305 1c1e3e26 2022-09-08 op h3.Ss::before { content: "Ss"; }
306 1c1e3e26 2022-09-08 op .St::before { content: "St"; }
307 1c1e3e26 2022-09-08 op .Sx::before { content: "Sx"; }
308 1c1e3e26 2022-09-08 op .Sy::before { content: "Sy"; }
309 1c1e3e26 2022-09-08 op .Va::before { content: "Va"; }
310 1c1e3e26 2022-09-08 op .Vt::before { content: "Vt"; }
311 1c1e3e26 2022-09-08 op .Xr::before { content: "Xr"; }
312 1c1e3e26 2022-09-08 op
313 1c1e3e26 2022-09-08 op .An::before, .Ar::before, .Cd::before, .Cm::before,
314 1c1e3e26 2022-09-08 op .Dv::before, .Em::before, .Er::before, .Ev::before,
315 1c1e3e26 2022-09-08 op .Fa::before, .Fd::before, .Fl::before, .Fn::before, .Ft::before,
316 1c1e3e26 2022-09-08 op .Ic::before, code.In::before, .Lb::before, .Lk::before,
317 1c1e3e26 2022-09-08 op .Ms::before, .Mt::before, .Nd::before, code.Nm::before,
318 1c1e3e26 2022-09-08 op .Pa::before, .Rs::before,
319 1c1e3e26 2022-09-08 op h2.Sh::before, h3.Ss::before, .St::before, .Sx::before, .Sy::before,
320 1c1e3e26 2022-09-08 op .Va::before, .Vt::before, .Xr::before {
321 1c1e3e26 2022-09-08 op opacity: 0;
322 1c1e3e26 2022-09-08 op transition: .15s ease opacity;
323 1c1e3e26 2022-09-08 op pointer-events: none;
324 1c1e3e26 2022-09-08 op position: absolute;
325 1c1e3e26 2022-09-08 op bottom: 100%;
326 1c1e3e26 2022-09-08 op box-shadow: 0 0 .35em var(--fg);
327 1c1e3e26 2022-09-08 op padding: .15em .25em;
328 1c1e3e26 2022-09-08 op white-space: nowrap;
329 1c1e3e26 2022-09-08 op font-family: Helvetica,Arial,sans-serif;
330 1c1e3e26 2022-09-08 op font-style: normal;
331 1c1e3e26 2022-09-08 op font-weight: bold;
332 1c1e3e26 2022-09-08 op background: var(--bg);
333 1c1e3e26 2022-09-08 op color: var(--fg); }
334 1c1e3e26 2022-09-08 op .An:hover::before, .Ar:hover::before, .Cd:hover::before, .Cm:hover::before,
335 1c1e3e26 2022-09-08 op .Dv:hover::before, .Em:hover::before, .Er:hover::before, .Ev:hover::before,
336 1c1e3e26 2022-09-08 op .Fa:hover::before, .Fd:hover::before, .Fl:hover::before, .Fn:hover::before,
337 1c1e3e26 2022-09-08 op .Ft:hover::before, .Ic:hover::before, code.In:hover::before,
338 1c1e3e26 2022-09-08 op .Lb:hover::before, .Lk:hover::before, .Ms:hover::before, .Mt:hover::before,
339 1c1e3e26 2022-09-08 op .Nd:hover::before, code.Nm:hover::before, .Pa:hover::before,
340 1c1e3e26 2022-09-08 op .Rs:hover::before, h2.Sh:hover::before, h3.Ss:hover::before, .St:hover::before,
341 1c1e3e26 2022-09-08 op .Sx:hover::before, .Sy:hover::before, .Va:hover::before, .Vt:hover::before,
342 1c1e3e26 2022-09-08 op .Xr:hover::before {
343 1c1e3e26 2022-09-08 op opacity: 1;
344 1c1e3e26 2022-09-08 op pointer-events: inherit; }
345 1c1e3e26 2022-09-08 op
346 1c1e3e26 2022-09-08 op /* Overrides to avoid excessive margins on small devices. */
347 1c1e3e26 2022-09-08 op
348 1c1e3e26 2022-09-08 op @media (max-width: 37.5em) {
349 1c1e3e26 2022-09-08 op main { margin-left: 0.5em; }
350 1c1e3e26 2022-09-08 op h2.Sh, h3.Ss { margin-left: 0em; }
351 1c1e3e26 2022-09-08 op .Bd-indent { margin-left: 2em; }
352 1c1e3e26 2022-09-08 op .Bl-hang > dd {
353 1c1e3e26 2022-09-08 op margin-left: 2em; }
354 1c1e3e26 2022-09-08 op .Bl-tag { margin-left: 2em; }
355 1c1e3e26 2022-09-08 op .Bl-tag > dt {
356 1c1e3e26 2022-09-08 op margin-left: -2em; }
357 1c1e3e26 2022-09-08 op .HP { margin-left: 2em;
358 1c1e3e26 2022-09-08 op text-indent: -2em; }
359 1c1e3e26 2022-09-08 op }
360 1c1e3e26 2022-09-08 op
361 1c1e3e26 2022-09-08 op /* Overrides for a dark color scheme for accessibility. */
362 1c1e3e26 2022-09-08 op
363 1c1e3e26 2022-09-08 op @media (prefers-color-scheme: dark) {
364 1c1e3e26 2022-09-08 op html { --bg: #1E1F21;
365 1c1e3e26 2022-09-08 op --fg: #EEEFF1; }
366 1c1e3e26 2022-09-08 op :link { color: #BAD7FF; }
367 1c1e3e26 2022-09-08 op :visited { color: #F6BAFF; }
368 1c1e3e26 2022-09-08 op }