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
|
body {
font-family: Georgia;
}
h1, h2, h3, h4, h5, h6 {
font-family: Helvetica;
}
a:hover {
text-decoration: underline;
}
img.tideliftlogo {
border: 1px solid #888;
margin-top: .5em !important;
}
.rst-content ol.arabic li {
margin-bottom: 12px;
}
.rst-content h3, .rst-content h4, .rst-content h5, .rst-content h6 {
/* This makes config.rst look a little better, but the paras are still too
* spaced out.
*/
margin-bottom: 12px;
}
/* Tabs */
.ui.menu {
font-family: Helvetica;
min-height: 0;
}
.ui.tabular.menu .item {
padding: .25em 1em;
}
.ui.menu .item {
padding: 0;
}
.sphinx-tabs {
margin-bottom: 1em;
}
.sig {
font-family: Consolas,"Andale Mono WT","Andale Mono","Lucida Console","Lucida Sans Typewriter","DejaVu Sans Mono","Bitstream Vera Sans Mono","Liberation Mono","Nimbus Mono L",Monaco,"Courier New",Courier,monospace;
}
.sig-name, .sig-prename {
font-size: 1.1em;
font-weight: bold;
color: black;
}
.rst-content dl dt.sig {
font-weight: inherit;
}
/* .. parsed-literal:: isn't styled like other <pre> blocks!? */
.rst-content pre.literal-block {
white-space: pre;
padding: 12px 12px !important;
font-family: Consolas,"Andale Mono WT","Andale Mono","Lucida Console","Lucida Sans Typewriter","DejaVu Sans Mono","Bitstream Vera Sans Mono","Liberation Mono","Nimbus Mono L",Monaco,"Courier New",Courier,monospace;
font-size: 12px;
display: block;
overflow: auto;
color: #404040;
background: #efc;
}
|