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 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
|
}* Tweak the overal size to better match RTD.
*/
body {
font-size: 90%;
}
h3, h4, h5, h6 {
color: #000000;
font-weight: 300
}
/*
* Sphinx doesn't have support for section dividers like we do in
* MkDocs, this styles the section titles in the nav
*
* https://github.com/mkdocs/mkdocs/issues/175
*/
.wy-menu-vertical span {
line-height: 18px;
padding: 0.4045em 1.618em;
display: block;
position: relative;
font-size: 90%;
color: #838383;
}
.wy-menu-vertical .subnav a {
padding: 0.4045em 2.427em;
}
/*
* Long navigations run off the bottom of the screen as the nav
* area doesn't scroll.
*
* https://github.com/mkdocs/mkdocs/pull/202
*/
.wy-nav-side {
height: 100%;
overflow-y: auto;
}
/*
* readthedocs theme hides nav items when the window height is
* too small to contain them.
*
* https://github.com/mkdocs/mkdocs/issues/#348
*/
.wy-menu-vertical ul {
margin-bottom: 2em;
}
/*
* Wrap inline code samples otherwise they shoot of the side and
* can't be read at all.
*
* https://github.com/mkdocs/mkdocs/issues/313
*/
/*
p code {
word-wrap: break-word;
}
*/
/*
* The CSS classes from highlight.js seem to clash with the
* ReadTheDocs theme causing some code to be incorrectly made
* bold and italic.
*
* https://github.com/mkdocs/mkdocs/issues/411
*/
code.cs, code.c {
font-weight: inherit;
font-style: inherit;
}
/*
* Fix some issues with the theme and non-highlighted code
* samples. Without and highlighting styles attached the
* formatting is broken.
*
* https://github.com/mkdocs/mkdocs/issues/319
*/
.no-highlight {
display: block;
padding: 0.5em;
color: #333;
}
/*
* Additions specific to the search functionality provided by MkDocs
*/
#mkdocs-search-results article h3
{
margin-top: 23px;
border-top: 1px solid #E1E4E5;
padding-top: 24px;
}
#mkdocs-search-results article:first-child h3 {
border-top: none;
}
#mkdocs-search-query{
width: 100%;
border-radius: 50px;
padding: 6px 12px;
border-color: #D1D4D5;
}
.wy-menu-vertical li ul {
display: inherit;
}
.wy-menu-vertical li ul.subnav ul.subnav{
padding-left: 1em;
}
/*
* Fix wrapping in the code highlighting
*
* https://github.com/mkdocs/mkdocs/issues/233
*/
code {
white-space: pre;
border: none;
/*background-color: lightgray;*/
background-color: inherit;
color: black;
color: inherit;
}
pre {
padding: 5px 5px 5px 5px;
font-size: 125%;
/*border-style: dashed dashed dashed dashed;*/
border-width: 0pt black;
background: lightgray;
background-color: lightgray;
color: black;
}
.hljs {
background: lightgray;
background-color: lightgray;
color: black;
}
/*
* HR 20150603 I can't figure out any way to get
* small caps text other than via the following kluge:
*
* 1. Enable the 'wikilinks' markdown extension in the
* mkdocs.yml file
*
* 2. Include the following style specification to ensure
* that wikilinks are rendered in small caps but otherwise
* like ordinary text (i.e. in ordinary black text and
* with the usual underline-on-hover feature turned off)
*
* 3. Then text delineated by double brackets (as in: [[scuff-em]])
* be rendered in small caps.
*/
a.wikilink {
font-variant: small-caps;
color: #000000;
}
a.wikilink:hover
{text-decoration:none }
.SmallCaps{
font-variant: small-caps;
font-variant-numeric: oldstyle-nums;
}
.SC{
font-variant: small-caps;
font-variant-numeric: oldstyle-nums;
}
ol.TOC {
margin: 20px 0;
padding:5px;
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
}
.toc {
margin: 20px 0;
padding:5px;
border: 1px solid #aaaaaa;
background-color: #f9f9f9;
}
.toctitle
{ font-variant: small-caps;
font-weight: bold;
padding: 5px;
margin: 5px 5px;
text-align: center;
}
.shaded
{ background-color: #EEEEEE;
}
|