aboutsummaryrefslogtreecommitdiffstats
path: root/_static/basic.css
diff options
context:
space:
mode:
Diffstat (limited to '_static/basic.css')
-rwxr-xr-x[-rw-r--r--]_static/basic.css79
1 files changed, 56 insertions, 23 deletions
diff --git a/_static/basic.css b/_static/basic.css
index 9fa77d8..7ed0e58 100644..100755
--- a/_static/basic.css
+++ b/_static/basic.css
@@ -4,7 +4,7 @@
4 * 4 *
5 * Sphinx stylesheet -- basic theme. 5 * Sphinx stylesheet -- basic theme.
6 * 6 *
7 * :copyright: Copyright 2007-2015 by the Sphinx team, see AUTHORS. 7 * :copyright: Copyright 2007-2016 by the Sphinx team, see AUTHORS.
8 * :license: BSD, see LICENSE for details. 8 * :license: BSD, see LICENSE for details.
9 * 9 *
10 */ 10 */
@@ -52,6 +52,8 @@ div.sphinxsidebar {
52 width: 230px; 52 width: 230px;
53 margin-left: -100%; 53 margin-left: -100%;
54 font-size: 90%; 54 font-size: 90%;
55 word-wrap: break-word;
56 overflow-wrap : break-word;
55} 57}
56 58
57div.sphinxsidebar ul { 59div.sphinxsidebar ul {
@@ -83,10 +85,6 @@ div.sphinxsidebar #searchbox input[type="text"] {
83 width: 170px; 85 width: 170px;
84} 86}
85 87
86div.sphinxsidebar #searchbox input[type="submit"] {
87 width: 30px;
88}
89
90img { 88img {
91 border: 0; 89 border: 0;
92 max-width: 100%; 90 max-width: 100%;
@@ -124,6 +122,8 @@ ul.keywordmatches li.goodmatch a {
124 122
125table.contentstable { 123table.contentstable {
126 width: 90%; 124 width: 90%;
125 margin-left: auto;
126 margin-right: auto;
127} 127}
128 128
129table.contentstable p.biglink { 129table.contentstable p.biglink {
@@ -151,9 +151,14 @@ table.indextable td {
151 vertical-align: top; 151 vertical-align: top;
152} 152}
153 153
154table.indextable dl, table.indextable dd { 154table.indextable ul {
155 margin-top: 0; 155 margin-top: 0;
156 margin-bottom: 0; 156 margin-bottom: 0;
157 list-style-type: none;
158}
159
160table.indextable > tbody > tr > td > ul {
161 padding-left: 0em;
157} 162}
158 163
159table.indextable tr.pcap { 164table.indextable tr.pcap {
@@ -185,8 +190,22 @@ div.genindex-jumpbox {
185 padding: 0.4em; 190 padding: 0.4em;
186} 191}
187 192
193/* -- domain module index --------------------------------------------------- */
194
195table.modindextable td {
196 padding: 2px;
197 border-collapse: collapse;
198}
199
188/* -- general body styles --------------------------------------------------- */ 200/* -- general body styles --------------------------------------------------- */
189 201
202div.body p, div.body dd, div.body li, div.body blockquote {
203 -moz-hyphens: auto;
204 -ms-hyphens: auto;
205 -webkit-hyphens: auto;
206 hyphens: auto;
207}
208
190a.headerlink { 209a.headerlink {
191 visibility: hidden; 210 visibility: hidden;
192} 211}
@@ -212,10 +231,6 @@ div.body td {
212 text-align: left; 231 text-align: left;
213} 232}
214 233
215.field-list ul {
216 padding-left: 1em;
217}
218
219.first { 234.first {
220 margin-top: 0 !important; 235 margin-top: 0 !important;
221} 236}
@@ -332,10 +347,6 @@ table.docutils td, table.docutils th {
332 border-bottom: 1px solid #aaa; 347 border-bottom: 1px solid #aaa;
333} 348}
334 349
335table.field-list td, table.field-list th {
336 border: 0 !important;
337}
338
339table.footnote td, table.footnote th { 350table.footnote td, table.footnote th {
340 border: 0 !important; 351 border: 0 !important;
341} 352}
@@ -372,6 +383,20 @@ div.figure p.caption span.caption-number {
372div.figure p.caption span.caption-text { 383div.figure p.caption span.caption-text {
373} 384}
374 385
386/* -- field list styles ----------------------------------------------------- */
387
388table.field-list td, table.field-list th {
389 border: 0 !important;
390}
391
392.field-list ul {
393 margin: 0;
394 padding-left: 1em;
395}
396
397.field-list p {
398 margin: 0;
399}
375 400
376/* -- other body styles ----------------------------------------------------- */ 401/* -- other body styles ----------------------------------------------------- */
377 402
@@ -422,15 +447,6 @@ dl.glossary dt {
422 font-size: 1.1em; 447 font-size: 1.1em;
423} 448}
424 449
425.field-list ul {
426 margin: 0;
427 padding-left: 1em;
428}
429
430.field-list p {
431 margin: 0;
432}
433
434.optional { 450.optional {
435 font-size: 1.3em; 451 font-size: 1.3em;
436} 452}
@@ -489,6 +505,13 @@ pre {
489 overflow-y: hidden; /* fixes display issues on Chrome browsers */ 505 overflow-y: hidden; /* fixes display issues on Chrome browsers */
490} 506}
491 507
508span.pre {
509 -moz-hyphens: none;
510 -ms-hyphens: none;
511 -webkit-hyphens: none;
512 hyphens: none;
513}
514
492td.linenos pre { 515td.linenos pre {
493 padding: 5px 0px; 516 padding: 5px 0px;
494 border: 0; 517 border: 0;
@@ -580,6 +603,16 @@ span.eqno {
580 float: right; 603 float: right;
581} 604}
582 605
606span.eqno a.headerlink {
607 position: relative;
608 left: 0px;
609 z-index: 1;
610}
611
612div.math:hover a.headerlink {
613 visibility: visible;
614}
615
583/* -- printout stylesheet --------------------------------------------------- */ 616/* -- printout stylesheet --------------------------------------------------- */
584 617
585@media print { 618@media print {