blob: 68bfa7b5b107431082bd2c9432f08ad594216f5a (
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
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
|
pre {
width: 100%;
white-space: pre;
overflow: auto !important;
display: grid;
}
code {
overflow: auto !important;
}
/* to match std */
pre, pre > code, code.bruijn {
background-color: #222222;
}
pre a {
color: var(--font-color);
}
.headerlink {
display: none;
}
h2,h3,h4,h5,h6 {
line-height: var(--global-line-height);
margin-bottom: 0.5em;
}
.terminal h1 {
font-size: 2.33em;
}
.terminal h1 > * {
font-size: inherit;
}
.terminal h2 {
font-size: 1.83em;
}
.terminal h2 > * {
font-size: inherit;
}
.terminal h3{
font-size: 1.50em;
}
.terminal h3 > * {
font-size: inherit;
}
.terminal h4 {
font-size: 1.33em;
}
.terminal h4 > * {
font-size: inherit;
}
.terminal h5 {
font-size: 1.16em;
}
.terminal h5 > * {
font-size: inherit;
}
.terminal h6 {
font-size: 1em;
}
.terminal h6 > * {
font-size: inherit;
}
pre:has(.language-code-showcase), .language-code-showcase {
background-color: transparent;
border: 0;
margin: 0 auto;
width: fit-content;
max-width: 100%;
white-space: pre;
}
|