-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·120 lines (100 loc) · 2.27 KB
/
style.css
File metadata and controls
executable file
·120 lines (100 loc) · 2.27 KB
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
/* override table width restrictions */
@media screen and (min-width: 767px) {
.wy-table-responsive table td {
/* !important prevents the common CSS stylesheets from overriding
this as on RTD they are loaded after this stylesheet */
white-space: normal !important;
}
}
.code-block-caption {
color: #000;
font: italic 85%/1 arial,sans-serif;
padding: 1em 0;
text-align: center;
}
.collapsible {
margin-left: -10px;
background-color: #f1f1f1;
cursor: pointer;
padding: 18px 18px 18px 10px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-weight: 700;
font-family: "Roboto Slab","ff-tisa-web-pro","Georgia",Arial,sans-serif;
}
code.sig-name.descname {
white-space: initial;
}
table.optimization-notice td {
white-space: initial;
}
table.optimization-notice td p:last-child {
text-align: right;
}
img.with-border {
border:1px solid #021a40;
}
div.column {
float: left;
width: 50%;
padding: 10px;
}
/* Clear floats after the columns */
.column:after {
content: "";
display: table;
clear: both;
}
.comparison:after {
content: "";
display: table;
clear: both;
}
div.admonition-container {
width: 49%;
padding: 0 3px 0 0;
}
/* Clear floats after the columns */
.admonition-container:after {
content: "";
display: table;
clear: both;
}
div.quotation {
background-color: #fffff1;
padding: 1em 0 0 1em;
}
.rst-content div[class^='highlight'] pre {
white-space: pre-wrap;
}
/* A workaround for https://github.com/readthedocs/sphinx_rtd_theme/issues/647
* Override display for function signatures so that there is spacing between
* types and arguments */
.rst-content dl:not(.docutils) dt {
display: table-cell !important;
}
.rst-content dl:not(.docutils) dd {
margin-top: 6px;
}
/*
.rst-content tt.literal, .rst-content code.literal, .highlight {
background: #f0f0f0;
}
.rst-content tt.literal, .rst-content code.literal {
color: #000000;
}*/
.eqno {
margin-left: 5px;
float: right;
}
.math .headerlink {
display: none;
visibility: hidden;
}
.math:hover .headerlink {
display: inline-block;
visibility: visible;
margin-right: -0.7em;
}