-
Notifications
You must be signed in to change notification settings - Fork 10
/
docsite.css
205 lines (168 loc) · 3.19 KB
/
docsite.css
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
/*
* Copyright 2014 Pants project contributors (see CONTRIBUTORS.md).
* Licensed under the Apache License, Version 2.0 (see LICENSE).
*/
body {
background-color: #fff;
color: #111;
font-family: "Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;
}
h1, h2, h3, h4, h5, h6 {
color: #006;
margin: 1em 0 0.3em -0.01em;
}
.navbar-brand-img {
padding-top: 9px;
}
.mainflow {
margin-bottom: 40em; /* So jumping to anchor link works OK close to content bottom. */
line-height: 24px;
}
a:link, a:visited {
text-decoration: none;
color: #027bce;
}
a:hover {
background-color: #fff;
}
pre {
border: 1px solid #ddd;
padding: 5px 10px 5px 10px;
color: #006;
white-space: pre-wrap;
}
ul, ol, dl {
margin: 0 0 0.8em 0;
padding: 0;
}
ul li, ol li {
margin-left: 24px;
}
nav {
z-index: 1;
}
/* on small screens, hide navigation by default */
@media screen and (max-width: 768px){
#navtoggler { display: block; }
nav { display: none; }
div.mainflow { margin-left: 2px; }
}
/* Site-wide table of contents */
.site-toc ul {
padding: 0.3rem 0;
margin: 0;
list-style-type: none;
}
.site-toc li.toc-link a {
color: #027bce;
}
.site-toc li.toc-here, .site-toc li.toc-link:hover, .site-toc li.toc-link:hover a {
background-color: #e5e7f3;
color: black;
}
.site-toc ul li.toc-heading {
padding-left: 0;
padding-top: 1em;
font-size: larger;
}
.site-toc ul li.toc-h0 {
padding-left: 0;
}
.site-toc ul li.toc-h1 {
padding-left: 0.5em;
margin-top: 0.5em;
}
.site-toc ul li.toc-h2 {
padding-left: 1.5em;
font-size: smaller;
}
.site-toc ul li.toc-h3 {
padding-left: 2.5em;
font-size: smaller;
color: #eee;
}
.site-toc ul li.toc-h4 {
padding-left: 3.5em;
font-size: smaller;
color: #eee;
}
/* page's table of contents */
.codehilite {
/* The pygments codehilite background color bleeds under the toc's float, and we don't
need it anyway, so we forcefully override it here. */
background-color: #fff !important;
}
nav.pagetoc {
float: right;
margin: 0 1em 0 1em;
width: 300px;
}
nav.pagetoc ul {
padding: 1.0em 0;
margin: 0;
list-style-type: none;
background-color: #dde;
}
nav.pagetoc ul li {
margin: 0.5em 1em;
padding-right: 2px;
}
nav.pagetoc ul li:hover, nav.pagetoc ul li:hover a:hover {
background-color: black;
color: white;
}
nav.pagetoc ul li:hover a {
color: white;
}
nav.pagetoc ul li.toc-h1 {
padding-left: 0.25em;
}
nav.pagetoc ul li.toc-h2 {
padding-left: 1.0em;
}
nav.pagetoc ul li.toc-h3 {
padding-left: 2.0em;
}
nav.pagetoc ul li.toc-h4 {
padding-left: 3.0em;
}
.deprecated {
padding: 0.3rem 0;
margin: 0;
font-size: larger;
background-color: lightcoral;
text-align: center;
}
.deprecated a:hover {
background-color: lightcoral;
color: blue;
}
div.ci-status {
position: absolute;
top: 0;
right: 0;
}
div.ci-status img {
vertical-align: middle;
}
/* colophon at page bottom */
.generated {
margin-top: 5em;
font-size: 70%;
text-align: center;
color: #777;
}
.generated a {
text-decoration: none;
}
.generated a:hover {
background-color: #fff;
}
.index-report-server-page-img {
border: 1px solid black;
float: right;
margin: 2px;
}
.index-intro-text {
clear: right;
}