[76] | 1 | /** |
---|
| 2 | * Sphinx stylesheet -- sphinxdoc theme |
---|
| 3 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
---|
| 4 | * |
---|
| 5 | * Originally created by Armin Ronacher for Werkzeug, adapted by Georg Brandl. |
---|
| 6 | */ |
---|
| 7 | |
---|
| 8 | @import url("basic.css"); |
---|
| 9 | |
---|
| 10 | /* -- page layout ----------------------------------------------------------- */ |
---|
| 11 | |
---|
| 12 | body { |
---|
| 13 | font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Geneva', |
---|
| 14 | 'Verdana', sans-serif; |
---|
| 15 | font-size: 14px; |
---|
| 16 | letter-spacing: -0.01em; |
---|
| 17 | line-height: 150%; |
---|
| 18 | text-align: center; |
---|
| 19 | background-color: #BFD1D4; |
---|
| 20 | color: black; |
---|
| 21 | padding: 0; |
---|
| 22 | border: 1px solid #aaa; |
---|
| 23 | |
---|
| 24 | margin: 0px 80px 0px 80px; |
---|
| 25 | min-width: 740px; |
---|
| 26 | } |
---|
| 27 | |
---|
| 28 | div.documentwrapper { |
---|
| 29 | float: none; |
---|
| 30 | } |
---|
| 31 | |
---|
| 32 | div.document { |
---|
| 33 | background-color: white; |
---|
| 34 | text-align: left; |
---|
| 35 | background-image: url(contents.png); |
---|
| 36 | background-repeat: repeat-x; |
---|
| 37 | } |
---|
| 38 | |
---|
| 39 | div.bodywrapper { |
---|
| 40 | margin: 0 240px 0 0; |
---|
| 41 | border-right: 1px solid #ccc; |
---|
| 42 | } |
---|
| 43 | |
---|
| 44 | div.body { |
---|
| 45 | margin: 0; |
---|
| 46 | padding: 0.5em 20px 20px 20px; |
---|
| 47 | } |
---|
| 48 | |
---|
| 49 | div.related { |
---|
| 50 | font-size: 1em; |
---|
| 51 | } |
---|
| 52 | |
---|
| 53 | div.related ul { |
---|
| 54 | background-image: url(navigation.png); |
---|
| 55 | height: 2em; |
---|
| 56 | border-top: 1px solid #ddd; |
---|
| 57 | border-bottom: 1px solid #ddd; |
---|
| 58 | } |
---|
| 59 | |
---|
| 60 | div.related ul li { |
---|
| 61 | margin: 0; |
---|
| 62 | padding: 0; |
---|
| 63 | height: 2em; |
---|
| 64 | float: left; |
---|
| 65 | } |
---|
| 66 | |
---|
| 67 | div.related ul li.right { |
---|
| 68 | float: right; |
---|
| 69 | margin-right: 5px; |
---|
| 70 | } |
---|
| 71 | |
---|
| 72 | div.related ul li a { |
---|
| 73 | margin: 0; |
---|
| 74 | padding: 0 5px 0 5px; |
---|
| 75 | line-height: 1.75em; |
---|
| 76 | color: #EE9816; |
---|
| 77 | } |
---|
| 78 | |
---|
| 79 | div.related ul li a:hover { |
---|
| 80 | color: #3CA8E7; |
---|
| 81 | } |
---|
| 82 | |
---|
| 83 | div.sphinxsidebarwrapper { |
---|
| 84 | padding: 0; |
---|
| 85 | } |
---|
| 86 | |
---|
| 87 | div.sphinxsidebar { |
---|
| 88 | margin: 0; |
---|
| 89 | padding: 0.5em 15px 15px 0; |
---|
| 90 | width: 210px; |
---|
| 91 | float: right; |
---|
| 92 | font-size: 1em; |
---|
| 93 | text-align: left; |
---|
| 94 | } |
---|
| 95 | |
---|
| 96 | div.sphinxsidebar h3, div.sphinxsidebar h4 { |
---|
| 97 | margin: 1em 0 0.5em 0; |
---|
| 98 | font-size: 1em; |
---|
| 99 | padding: 0.1em 0 0.1em 0.5em; |
---|
| 100 | color: white; |
---|
| 101 | border: 1px solid #86989B; |
---|
| 102 | background-color: #AFC1C4; |
---|
| 103 | } |
---|
| 104 | |
---|
| 105 | div.sphinxsidebar h3 a { |
---|
| 106 | color: white; |
---|
| 107 | } |
---|
| 108 | |
---|
| 109 | div.sphinxsidebar ul { |
---|
| 110 | padding-left: 1.5em; |
---|
| 111 | margin-top: 7px; |
---|
| 112 | padding: 0; |
---|
| 113 | line-height: 130%; |
---|
| 114 | } |
---|
| 115 | |
---|
| 116 | div.sphinxsidebar ul ul { |
---|
| 117 | margin-left: 20px; |
---|
| 118 | } |
---|
| 119 | |
---|
| 120 | div.footer { |
---|
| 121 | background-color: #E3EFF1; |
---|
| 122 | color: #86989B; |
---|
| 123 | padding: 3px 8px 3px 0; |
---|
| 124 | clear: both; |
---|
| 125 | font-size: 0.8em; |
---|
| 126 | text-align: right; |
---|
| 127 | } |
---|
| 128 | |
---|
| 129 | div.footer a { |
---|
| 130 | color: #86989B; |
---|
| 131 | text-decoration: underline; |
---|
| 132 | } |
---|
| 133 | |
---|
| 134 | /* -- body styles ----------------------------------------------------------- */ |
---|
| 135 | |
---|
| 136 | p { |
---|
| 137 | margin: 0.8em 0 0.5em 0; |
---|
| 138 | } |
---|
| 139 | |
---|
| 140 | a { |
---|
| 141 | color: #CA7900; |
---|
| 142 | text-decoration: none; |
---|
| 143 | } |
---|
| 144 | |
---|
| 145 | a:hover { |
---|
| 146 | color: #2491CF; |
---|
| 147 | } |
---|
| 148 | |
---|
| 149 | div.body a { |
---|
| 150 | text-decoration: underline; |
---|
| 151 | } |
---|
| 152 | |
---|
| 153 | h1 { |
---|
| 154 | margin: 0; |
---|
| 155 | padding: 0.7em 0 0.3em 0; |
---|
| 156 | font-size: 1.5em; |
---|
| 157 | color: #11557C; |
---|
| 158 | } |
---|
| 159 | |
---|
| 160 | h2 { |
---|
| 161 | margin: 1.3em 0 0.2em 0; |
---|
| 162 | font-size: 1.35em; |
---|
| 163 | padding: 0; |
---|
| 164 | } |
---|
| 165 | |
---|
| 166 | h3 { |
---|
| 167 | margin: 1em 0 -0.3em 0; |
---|
| 168 | font-size: 1.2em; |
---|
| 169 | } |
---|
| 170 | |
---|
| 171 | div.body h1 a, div.body h2 a, div.body h3 a, div.body h4 a, div.body h5 a, div.body h6 a { |
---|
| 172 | color: black!important; |
---|
| 173 | } |
---|
| 174 | |
---|
| 175 | h1 a.anchor, h2 a.anchor, h3 a.anchor, h4 a.anchor, h5 a.anchor, h6 a.anchor { |
---|
| 176 | display: none; |
---|
| 177 | margin: 0 0 0 0.3em; |
---|
| 178 | padding: 0 0.2em 0 0.2em; |
---|
| 179 | color: #aaa!important; |
---|
| 180 | } |
---|
| 181 | |
---|
| 182 | h1:hover a.anchor, h2:hover a.anchor, h3:hover a.anchor, h4:hover a.anchor, |
---|
| 183 | h5:hover a.anchor, h6:hover a.anchor { |
---|
| 184 | display: inline; |
---|
| 185 | } |
---|
| 186 | |
---|
| 187 | h1 a.anchor:hover, h2 a.anchor:hover, h3 a.anchor:hover, h4 a.anchor:hover, |
---|
| 188 | h5 a.anchor:hover, h6 a.anchor:hover { |
---|
| 189 | color: #777; |
---|
| 190 | background-color: #eee; |
---|
| 191 | } |
---|
| 192 | |
---|
| 193 | a.headerlink { |
---|
| 194 | color: #c60f0f!important; |
---|
| 195 | font-size: 1em; |
---|
| 196 | margin-left: 6px; |
---|
| 197 | padding: 0 4px 0 4px; |
---|
| 198 | text-decoration: none!important; |
---|
| 199 | } |
---|
| 200 | |
---|
| 201 | a.headerlink:hover { |
---|
| 202 | background-color: #ccc; |
---|
| 203 | color: white!important; |
---|
| 204 | } |
---|
| 205 | |
---|
| 206 | cite, code, tt { |
---|
| 207 | font-family: 'Consolas', 'Deja Vu Sans Mono', |
---|
| 208 | 'Bitstream Vera Sans Mono', monospace; |
---|
| 209 | font-size: 0.95em; |
---|
| 210 | letter-spacing: 0.01em; |
---|
| 211 | } |
---|
| 212 | |
---|
| 213 | tt { |
---|
| 214 | background-color: #f2f2f2; |
---|
| 215 | border-bottom: 1px solid #ddd; |
---|
| 216 | color: #333; |
---|
| 217 | } |
---|
| 218 | |
---|
| 219 | tt.descname, tt.descclassname, tt.xref { |
---|
| 220 | border: 0; |
---|
| 221 | } |
---|
| 222 | |
---|
| 223 | hr { |
---|
| 224 | border: 1px solid #abc; |
---|
| 225 | margin: 2em; |
---|
| 226 | } |
---|
| 227 | |
---|
| 228 | a tt { |
---|
| 229 | border: 0; |
---|
| 230 | color: #CA7900; |
---|
| 231 | } |
---|
| 232 | |
---|
| 233 | a tt:hover { |
---|
| 234 | color: #2491CF; |
---|
| 235 | } |
---|
| 236 | |
---|
| 237 | pre { |
---|
| 238 | font-family: 'Consolas', 'Deja Vu Sans Mono', |
---|
| 239 | 'Bitstream Vera Sans Mono', monospace; |
---|
| 240 | font-size: 0.95em; |
---|
| 241 | letter-spacing: 0.015em; |
---|
| 242 | line-height: 120%; |
---|
| 243 | padding: 0.5em; |
---|
| 244 | border: 1px solid #ccc; |
---|
| 245 | background-color: #f8f8f8; |
---|
| 246 | } |
---|
| 247 | |
---|
| 248 | pre a { |
---|
| 249 | color: inherit; |
---|
| 250 | text-decoration: underline; |
---|
| 251 | } |
---|
| 252 | |
---|
| 253 | td.linenos pre { |
---|
| 254 | padding: 0.5em 0; |
---|
| 255 | } |
---|
| 256 | |
---|
| 257 | div.quotebar { |
---|
| 258 | background-color: #f8f8f8; |
---|
| 259 | max-width: 250px; |
---|
| 260 | float: right; |
---|
| 261 | padding: 2px 7px; |
---|
| 262 | border: 1px solid #ccc; |
---|
| 263 | } |
---|
| 264 | |
---|
| 265 | div.topic { |
---|
| 266 | background-color: #f8f8f8; |
---|
| 267 | } |
---|
| 268 | |
---|
| 269 | table { |
---|
| 270 | border-collapse: collapse; |
---|
| 271 | margin: 0 -0.5em 0 -0.5em; |
---|
| 272 | } |
---|
| 273 | |
---|
| 274 | table td, table th { |
---|
| 275 | padding: 0.2em 0.5em 0.2em 0.5em; |
---|
| 276 | } |
---|
| 277 | |
---|
| 278 | div.admonition, div.warning { |
---|
| 279 | font-size: 0.9em; |
---|
| 280 | margin: 1em 0 1em 0; |
---|
| 281 | border: 1px solid #86989B; |
---|
| 282 | background-color: #f7f7f7; |
---|
| 283 | padding: 0; |
---|
| 284 | } |
---|
| 285 | |
---|
| 286 | div.admonition p, div.warning p { |
---|
| 287 | margin: 0.5em 1em 0.5em 1em; |
---|
| 288 | padding: 0; |
---|
| 289 | } |
---|
| 290 | |
---|
| 291 | div.admonition pre, div.warning pre { |
---|
| 292 | margin: 0.4em 1em 0.4em 1em; |
---|
| 293 | } |
---|
| 294 | |
---|
| 295 | div.admonition p.admonition-title, |
---|
| 296 | div.warning p.admonition-title { |
---|
| 297 | margin: 0; |
---|
| 298 | padding: 0.1em 0 0.1em 0.5em; |
---|
| 299 | color: white; |
---|
| 300 | border-bottom: 1px solid #86989B; |
---|
| 301 | font-weight: bold; |
---|
| 302 | background-color: #AFC1C4; |
---|
| 303 | } |
---|
| 304 | |
---|
| 305 | div.warning { |
---|
| 306 | border: 1px solid #940000; |
---|
| 307 | } |
---|
| 308 | |
---|
| 309 | div.warning p.admonition-title { |
---|
| 310 | background-color: #CF0000; |
---|
| 311 | border-bottom-color: #940000; |
---|
| 312 | } |
---|
| 313 | |
---|
| 314 | div.admonition ul, div.admonition ol, |
---|
| 315 | div.warning ul, div.warning ol { |
---|
| 316 | margin: 0.1em 0.5em 0.5em 3em; |
---|
| 317 | padding: 0; |
---|
| 318 | } |
---|
| 319 | |
---|
| 320 | div.versioninfo { |
---|
| 321 | margin: 1em 0 0 0; |
---|
| 322 | border: 1px solid #ccc; |
---|
| 323 | background-color: #DDEAF0; |
---|
| 324 | padding: 8px; |
---|
| 325 | line-height: 1.3em; |
---|
| 326 | font-size: 0.9em; |
---|
| 327 | } |
---|