blob: 97b297b219a3de06ab05cd54e0494e846908cabd (
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
|
.breadcrumb-section {
padding: 1rem;
}
i.has-icon-padding {
padding: 0 10px 25px 0;
}
/*
* Move padding padding from <pre> tag to hljs <code> tags so the padding
* space is colored the same as the background of hljs <code> blocks.
*/
.content pre {
padding: 0;
}
code.hljs {
padding: 1.75em 2em;
}
/*
* Show header permalink on hover.
*/
.headerlink {
display: none;
padding-left: 0.5em;
}
:is(h1, h2, h3, h4, h5, h6):hover > .headerlink {
display: inline;
}
/*
* Display <em> tags immediately following <img> tags like figure subcaptions.
* Note: There must not be a newline between the image and the italicized line
* for this to work. Otherwise, it's regular markdown.
*
* Image caption:
*
* 
* *This is my caption.*
*
*/
img + em {
/* Place the caption on it's own line */
display: block;
white-space: pre;
/* Style */
font-size: .875em;
}
|