blob: c3a5112057f76cbf928c98022e8d057d8b7e69a1 (
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
|
:root {
font-size: 16px;
--gap-text: 0.75rem;
--tw-prose-invert-body: #e0e3e9;
}
.max-w-screen-lg {
max-width: 1100px;
}
code {
font-family: monospace!important;
font-size: 14px!important;
line-height: 1.4em!important;
}
section article {
display: block;
max-width: 750px;
margin: 0 auto;
font-size: 18px;
line-height: 1.6em;
}
.prose :where(p):not(:where([class~="not-prose"], [class~="not-prose"] *)) {
margin: var(--gap-text) 0;
}
details[data-callout] {
> summary { margin-bottom: var(--gap-text); }
> div {
display: flex;
flex-direction: column;
gap: var(--gap-text);
p { margin: 0; }
}
}
|