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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
|
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;
}
.ui.menu {
font-family: Helvetica;
min-height: 0;
}
.ui.tabular.menu .item {
padding: .25em 1em;
}
.ui.menu .item {
padding: 0;
}
.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;
}
/* I'm not sure why I had to make this so specific to get it to take effect... */
div.rst-content div.document div.wy-table-responsive table.docutils.align-default tbody tr td {
vertical-align: top !important;
}
/* And this doesn't work, and I guess I just have to live with it. */
div.rst-content div.document div.wy-table-responsive table.docutils.align-default tbody tr td .line-block {
margin-bottom: 0 !important;
}
/* sphinx-code-tabs */
/* Some selectors here are extra-specific (.container) because this file comes
* before code-tabs.css, so we need the specificity to override it.
*/
div.tabs.container > ul.tabbar > li.tabbutton {
color: #666;
background-color: #ddd;
border-color: #aaa;
}
div.tabs.container > ul.tabbar > li.tabbutton:hover {
background-color: #eee;
}
div.tabs.container > ul.tabbar > li.tabbutton.selected {
color: black;
background-color: #fff;
border-color: #aaa;
border-bottom-color: #fff;
}
div.tabs.container > ul.tabbar > li.tabbutton.selected:hover {
background-color: #fff;
}
div.tabs.container {
margin-bottom: 1em;
}
div.tab.selected {
border: 1px solid #ccc;
border-radius: 0 .5em .5em .5em;
}
div.tab.codetab.selected {
border: none;
}
|