blob: 45cff6a6562ba35d3e5225ffee4baa081a4834f7 (
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
|
:root {
--standard-border-radius: 0;
--text: black;
--text-light: #212121;
--preformatted: var(--code);
}
form {
display: flex;
column-gap: 1ex;
}
input[type="search"] {
width: 100%;
}
dt::after {
content: ": ";
}
dd {
margin-inline-start: 1rem;
}
dl {
display: grid;
align-items: baseline;
grid-row-gap: 1ch;
grid-template-rows: 1fr;
grid-template-columns: max-content 1fr;
}
pre {
margin: unset;
padding: 1ch 1.4ch;
}
pre:has(> code) {
background: var(--bg);
}
|