Georg Brandl | c8c358a | 2009-04-09 19:01:04 +0000 | [diff] [blame] | 1 | /** |
| 2 | * Sphinx stylesheet -- basic theme |
| 3 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 4 | */ |
| 5 | |
| 6 | /* -- main layout ----------------------------------------------------------- */ |
| 7 | |
Georg Brandl | c8c358a | 2009-04-09 19:01:04 +0000 | [diff] [blame] | 8 | div.clearer { |
| 9 | clear: both; |
| 10 | } |
| 11 | |
| 12 | /* -- relbar ---------------------------------------------------------------- */ |
| 13 | |
| 14 | div.related { |
| 15 | width: 100%; |
| 16 | font-size: 90%; |
| 17 | } |
| 18 | |
| 19 | div.related h3 { |
| 20 | display: none; |
| 21 | } |
| 22 | |
| 23 | div.related ul { |
| 24 | margin: 0; |
| 25 | padding: 0 0 0 10px; |
| 26 | list-style: none; |
| 27 | } |
| 28 | |
| 29 | div.related li { |
| 30 | display: inline; |
| 31 | } |
| 32 | |
| 33 | div.related li.right { |
| 34 | float: right; |
| 35 | margin-right: 5px; |
| 36 | } |
| 37 | |
| 38 | /* -- sidebar --------------------------------------------------------------- */ |
| 39 | |
| 40 | div.sphinxsidebarwrapper { |
Ezio Melotti | 8ad0eac | 2013-10-14 22:01:28 +0300 | [diff] [blame] | 41 | position: relative; |
| 42 | top: 0; |
Georg Brandl | c8c358a | 2009-04-09 19:01:04 +0000 | [diff] [blame] | 43 | padding: 10px 5px 0 10px; |
Ezio Melotti | d1076db | 2012-11-03 18:25:04 +0200 | [diff] [blame] | 44 | word-wrap: break-word; |
Georg Brandl | c8c358a | 2009-04-09 19:01:04 +0000 | [diff] [blame] | 45 | } |
| 46 | |
| 47 | div.sphinxsidebar { |
| 48 | float: left; |
| 49 | width: 230px; |
| 50 | margin-left: -100%; |
| 51 | font-size: 90%; |
| 52 | } |
| 53 | |
| 54 | div.sphinxsidebar ul { |
| 55 | list-style: none; |
| 56 | } |
| 57 | |
| 58 | div.sphinxsidebar ul ul, |
| 59 | div.sphinxsidebar ul.want-points { |
| 60 | margin-left: 20px; |
| 61 | list-style: square; |
| 62 | } |
| 63 | |
| 64 | div.sphinxsidebar ul ul { |
| 65 | margin-top: 0; |
| 66 | margin-bottom: 0; |
| 67 | } |
| 68 | |
| 69 | div.sphinxsidebar form { |
| 70 | margin-top: 10px; |
| 71 | } |
| 72 | |
| 73 | div.sphinxsidebar input { |
| 74 | border: 1px solid #98dbcc; |
| 75 | font-family: sans-serif; |
| 76 | font-size: 1em; |
| 77 | } |
| 78 | |
| 79 | img { |
| 80 | border: 0; |
| 81 | } |
| 82 | |
| 83 | /* -- search page ----------------------------------------------------------- */ |
| 84 | |
| 85 | ul.search { |
| 86 | margin: 10px 0 0 20px; |
| 87 | padding: 0; |
| 88 | } |
| 89 | |
| 90 | ul.search li { |
| 91 | padding: 5px 0 5px 20px; |
| 92 | background-image: url(file.png); |
| 93 | background-repeat: no-repeat; |
| 94 | background-position: 0 7px; |
| 95 | } |
| 96 | |
| 97 | ul.search li a { |
| 98 | font-weight: bold; |
| 99 | } |
| 100 | |
| 101 | ul.search li div.context { |
| 102 | color: #888; |
| 103 | margin: 2px 0 0 30px; |
| 104 | text-align: left; |
| 105 | } |
| 106 | |
| 107 | ul.keywordmatches li.goodmatch a { |
| 108 | font-weight: bold; |
| 109 | } |
| 110 | |
| 111 | /* -- index page ------------------------------------------------------------ */ |
| 112 | |
| 113 | table.contentstable { |
| 114 | width: 90%; |
| 115 | } |
| 116 | |
| 117 | table.contentstable p.biglink { |
| 118 | line-height: 150%; |
| 119 | } |
| 120 | |
| 121 | a.biglink { |
| 122 | font-size: 1.3em; |
| 123 | } |
| 124 | |
| 125 | span.linkdescr { |
| 126 | font-style: italic; |
| 127 | padding-top: 5px; |
| 128 | font-size: 90%; |
| 129 | } |
| 130 | |
| 131 | /* -- general index --------------------------------------------------------- */ |
| 132 | |
| 133 | table.indextable td { |
| 134 | text-align: left; |
| 135 | vertical-align: top; |
| 136 | } |
| 137 | |
| 138 | table.indextable dl, table.indextable dd { |
| 139 | margin-top: 0; |
| 140 | margin-bottom: 0; |
| 141 | } |
| 142 | |
| 143 | table.indextable tr.pcap { |
| 144 | height: 10px; |
| 145 | } |
| 146 | |
| 147 | table.indextable tr.cap { |
| 148 | margin-top: 10px; |
| 149 | background-color: #f2f2f2; |
| 150 | } |
| 151 | |
| 152 | img.toggler { |
| 153 | margin-right: 3px; |
| 154 | margin-top: 3px; |
| 155 | cursor: pointer; |
| 156 | } |
| 157 | |
| 158 | /* -- general body styles --------------------------------------------------- */ |
| 159 | |
| 160 | a.headerlink { |
| 161 | visibility: hidden; |
| 162 | } |
| 163 | |
| 164 | h1:hover > a.headerlink, |
| 165 | h2:hover > a.headerlink, |
| 166 | h3:hover > a.headerlink, |
| 167 | h4:hover > a.headerlink, |
| 168 | h5:hover > a.headerlink, |
| 169 | h6:hover > a.headerlink, |
| 170 | dt:hover > a.headerlink { |
| 171 | visibility: visible; |
| 172 | } |
| 173 | |
| 174 | div.body p.caption { |
| 175 | text-align: inherit; |
| 176 | } |
| 177 | |
| 178 | div.body td { |
| 179 | text-align: left; |
| 180 | } |
| 181 | |
| 182 | .field-list ul { |
| 183 | padding-left: 1em; |
| 184 | } |
| 185 | |
| 186 | .first { |
| 187 | margin-top: 0 !important; |
| 188 | } |
| 189 | |
| 190 | p.rubric { |
| 191 | margin-top: 30px; |
| 192 | font-weight: bold; |
| 193 | } |
| 194 | |
| 195 | /* -- sidebars -------------------------------------------------------------- */ |
| 196 | |
| 197 | div.sidebar { |
| 198 | margin: 0 0 0.5em 1em; |
| 199 | border: 1px solid #ddb; |
| 200 | padding: 7px 7px 0 7px; |
| 201 | background-color: #ffe; |
| 202 | width: 40%; |
| 203 | float: right; |
| 204 | } |
| 205 | |
| 206 | p.sidebar-title { |
| 207 | font-weight: bold; |
| 208 | } |
| 209 | |
| 210 | /* -- topics ---------------------------------------------------------------- */ |
| 211 | |
| 212 | div.topic { |
| 213 | border: 1px solid #ccc; |
| 214 | padding: 7px 7px 0 7px; |
| 215 | margin: 10px 0 10px 0; |
| 216 | } |
| 217 | |
| 218 | p.topic-title { |
| 219 | font-size: 1.1em; |
| 220 | font-weight: bold; |
| 221 | margin-top: 10px; |
| 222 | } |
| 223 | |
| 224 | /* -- admonitions ----------------------------------------------------------- */ |
| 225 | |
| 226 | div.admonition { |
| 227 | margin-top: 10px; |
| 228 | margin-bottom: 10px; |
| 229 | padding: 7px; |
| 230 | } |
| 231 | |
| 232 | div.admonition dt { |
| 233 | font-weight: bold; |
| 234 | } |
| 235 | |
| 236 | div.admonition dl { |
| 237 | margin-bottom: 0; |
| 238 | } |
| 239 | |
| 240 | p.admonition-title { |
| 241 | margin: 0px 10px 5px 0px; |
| 242 | font-weight: bold; |
| 243 | } |
| 244 | |
| 245 | div.body p.centered { |
| 246 | text-align: center; |
| 247 | margin-top: 25px; |
| 248 | } |
| 249 | |
| 250 | /* -- tables ---------------------------------------------------------------- */ |
| 251 | |
| 252 | table.docutils { |
Raymond Hettinger | 8dbae0f | 2009-04-10 00:49:41 +0000 | [diff] [blame] | 253 | border: 0 solid #dce; |
Georg Brandl | c8c358a | 2009-04-09 19:01:04 +0000 | [diff] [blame] | 254 | border-collapse: collapse; |
| 255 | } |
| 256 | |
| 257 | table.docutils td, table.docutils th { |
Raymond Hettinger | 3f5a0b3 | 2009-04-10 02:01:21 +0000 | [diff] [blame] | 258 | padding: 2px 5px 2px 5px; |
Ezio Melotti | cfe446e | 2012-11-03 18:24:11 +0200 | [diff] [blame] | 259 | border-left: 0; |
| 260 | background-color: #eef; |
Georg Brandl | c8c358a | 2009-04-09 19:01:04 +0000 | [diff] [blame] | 261 | } |
| 262 | |
Georg Brandl | 2804602 | 2011-02-25 11:01:04 +0000 | [diff] [blame] | 263 | table.docutils td p.last, table.docutils th p.last { |
| 264 | margin-bottom: 0; |
| 265 | } |
| 266 | |
Georg Brandl | c8c358a | 2009-04-09 19:01:04 +0000 | [diff] [blame] | 267 | table.field-list td, table.field-list th { |
| 268 | border: 0 !important; |
| 269 | } |
| 270 | |
| 271 | table.footnote td, table.footnote th { |
| 272 | border: 0 !important; |
| 273 | } |
| 274 | |
Raymond Hettinger | 390fa98 | 2009-04-09 23:25:30 +0000 | [diff] [blame] | 275 | table.docutils th { |
Ezio Melotti | cfe446e | 2012-11-03 18:24:11 +0200 | [diff] [blame] | 276 | border-top: 1px solid #cac; |
Raymond Hettinger | 390fa98 | 2009-04-09 23:25:30 +0000 | [diff] [blame] | 277 | background-color: #ede; |
| 278 | } |
| 279 | |
Georg Brandl | c8c358a | 2009-04-09 19:01:04 +0000 | [diff] [blame] | 280 | th { |
| 281 | text-align: left; |
| 282 | padding-right: 5px; |
Georg Brandl | c8c358a | 2009-04-09 19:01:04 +0000 | [diff] [blame] | 283 | } |
| 284 | |
Raymond Hettinger | 80a71a0 | 2009-04-09 23:34:14 +0000 | [diff] [blame] | 285 | th.head { |
Ezio Melotti | cfe446e | 2012-11-03 18:24:11 +0200 | [diff] [blame] | 286 | text-align: center; |
Raymond Hettinger | 80a71a0 | 2009-04-09 23:34:14 +0000 | [diff] [blame] | 287 | } |
| 288 | |
Georg Brandl | c8c358a | 2009-04-09 19:01:04 +0000 | [diff] [blame] | 289 | /* -- other body styles ----------------------------------------------------- */ |
| 290 | |
| 291 | dl { |
| 292 | margin-bottom: 15px; |
| 293 | } |
| 294 | |
| 295 | dd p { |
| 296 | margin-top: 0px; |
| 297 | } |
| 298 | |
| 299 | dd ul, dd table { |
| 300 | margin-bottom: 10px; |
| 301 | } |
| 302 | |
| 303 | dd { |
| 304 | margin-top: 3px; |
| 305 | margin-bottom: 10px; |
| 306 | margin-left: 30px; |
| 307 | } |
| 308 | |
Benjamin Peterson | af80ce3 | 2015-04-10 18:40:21 -0400 | [diff] [blame] | 309 | dt:target, .highlighted { |
Georg Brandl | c8c358a | 2009-04-09 19:01:04 +0000 | [diff] [blame] | 310 | background-color: #fbe54e; |
| 311 | } |
| 312 | |
| 313 | dl.glossary dt { |
| 314 | font-weight: bold; |
| 315 | font-size: 1.1em; |
| 316 | } |
| 317 | |
| 318 | .field-list ul { |
| 319 | margin: 0; |
| 320 | padding-left: 1em; |
| 321 | } |
| 322 | |
| 323 | .field-list p { |
| 324 | margin: 0; |
| 325 | } |
| 326 | |
| 327 | .refcount { |
| 328 | color: #060; |
| 329 | } |
| 330 | |
| 331 | .optional { |
| 332 | font-size: 1.3em; |
| 333 | } |
| 334 | |
| 335 | .versionmodified { |
| 336 | font-style: italic; |
| 337 | } |
| 338 | |
Georg Brandl | 0aab3d9 | 2013-10-13 09:31:42 +0200 | [diff] [blame] | 339 | .deprecated { |
Georg Brandl | 076ca5a | 2009-09-16 09:05:11 +0000 | [diff] [blame] | 340 | background-color: #ffe4e4; |
| 341 | border: 1px solid #f66; |
Georg Brandl | 21721b6 | 2013-10-13 09:56:20 +0200 | [diff] [blame] | 342 | padding: 7px; |
| 343 | } |
| 344 | |
| 345 | div.deprecated p { |
| 346 | margin-bottom: 0; |
Georg Brandl | 076ca5a | 2009-09-16 09:05:11 +0000 | [diff] [blame] | 347 | } |
| 348 | |
Georg Brandl | c8c358a | 2009-04-09 19:01:04 +0000 | [diff] [blame] | 349 | .system-message { |
| 350 | background-color: #fda; |
| 351 | padding: 5px; |
| 352 | border: 3px solid red; |
| 353 | } |
| 354 | |
| 355 | .footnote:target { |
Georg Brandl | 7f45ada | 2011-01-13 07:30:21 +0000 | [diff] [blame] | 356 | background-color: #ffa; |
Georg Brandl | c8c358a | 2009-04-09 19:01:04 +0000 | [diff] [blame] | 357 | } |
| 358 | |
Georg Brandl | 08be2e2 | 2009-10-22 08:05:04 +0000 | [diff] [blame] | 359 | .impl-detail { |
| 360 | margin-top: 10px; |
| 361 | margin-bottom: 10px; |
| 362 | padding: 7px; |
| 363 | border: 1px solid #ccc; |
| 364 | } |
| 365 | |
Georg Brandl | 3954d21 | 2009-10-22 11:36:50 +0000 | [diff] [blame] | 366 | .impl-detail .compound-first { |
| 367 | margin-top: 0; |
| 368 | } |
| 369 | |
| 370 | .impl-detail .compound-last { |
| 371 | margin-bottom: 0; |
Georg Brandl | 08be2e2 | 2009-10-22 08:05:04 +0000 | [diff] [blame] | 372 | } |
| 373 | |
Georg Brandl | c8c358a | 2009-04-09 19:01:04 +0000 | [diff] [blame] | 374 | /* -- code displays --------------------------------------------------------- */ |
| 375 | |
| 376 | pre { |
| 377 | overflow: auto; |
R. David Murray | 62a1aae | 2010-12-18 19:43:05 +0000 | [diff] [blame] | 378 | overflow-y: hidden; |
Georg Brandl | c8c358a | 2009-04-09 19:01:04 +0000 | [diff] [blame] | 379 | } |
| 380 | |
| 381 | td.linenos pre { |
| 382 | padding: 5px 0px; |
| 383 | border: 0; |
| 384 | background-color: transparent; |
| 385 | color: #aaa; |
| 386 | } |
| 387 | |
| 388 | table.highlighttable { |
| 389 | margin-left: 0.5em; |
| 390 | } |
| 391 | |
| 392 | table.highlighttable td { |
| 393 | padding: 0 0.5em 0 0.5em; |
| 394 | } |
| 395 | |
| 396 | tt.descname { |
| 397 | background-color: transparent; |
| 398 | font-weight: bold; |
| 399 | font-size: 1.2em; |
| 400 | } |
| 401 | |
| 402 | tt.descclassname { |
| 403 | background-color: transparent; |
| 404 | } |
| 405 | |
| 406 | tt.xref, a tt { |
| 407 | background-color: transparent; |
| 408 | font-weight: bold; |
| 409 | } |
| 410 | |
| 411 | h1 tt, h2 tt, h3 tt, h4 tt, h5 tt, h6 tt { |
| 412 | background-color: transparent; |
| 413 | } |
| 414 | |
| 415 | /* -- math display ---------------------------------------------------------- */ |
| 416 | |
| 417 | img.math { |
| 418 | vertical-align: middle; |
| 419 | } |
| 420 | |
Georg Brandl | 076ca5a | 2009-09-16 09:05:11 +0000 | [diff] [blame] | 421 | div.body div.math p { |
Georg Brandl | c8c358a | 2009-04-09 19:01:04 +0000 | [diff] [blame] | 422 | text-align: center; |
| 423 | } |
| 424 | |
| 425 | span.eqno { |
| 426 | float: right; |
| 427 | } |
| 428 | |
| 429 | /* -- printout stylesheet --------------------------------------------------- */ |
| 430 | |
| 431 | @media print { |
| 432 | div.document, |
| 433 | div.documentwrapper, |
| 434 | div.bodywrapper { |
Georg Brandl | 60bae6f | 2009-10-22 16:20:55 +0000 | [diff] [blame] | 435 | margin: 0 !important; |
Georg Brandl | c8c358a | 2009-04-09 19:01:04 +0000 | [diff] [blame] | 436 | width: 100%; |
| 437 | } |
| 438 | |
| 439 | div.sphinxsidebar, |
| 440 | div.related, |
| 441 | div.footer, |
| 442 | #top-link { |
| 443 | display: none; |
| 444 | } |
| 445 | } |