]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/html/static/themes/main.css
Add an unstable FileTypeExt extension trait for Windows
[rust.git] / src / librustdoc / html / static / themes / main.css
1 /**
2  * Copyright 2015 The Rust Project Developers. See the COPYRIGHT
3  * file at the top-level directory of this distribution and at
4  * http://rust-lang.org/COPYRIGHT.
5  *
6  * Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
7  * http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
8  * <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
9  * option. This file may not be copied, modified, or distributed
10  * except according to those terms.
11  */
12
13 /* General structure and fonts */
14
15 body {
16         background-color: white;
17         color: black;
18 }
19
20 h1, h2, h3:not(.impl):not(.method):not(.type):not(.tymethod), h4:not(.method):not(.type):not(.tymethod) {
21         color: black;
22 }
23 h1.fqn {
24         border-bottom-color: #D5D5D5;
25 }
26 h2, h3:not(.impl):not(.method):not(.type):not(.tymethod), h4:not(.method):not(.type):not(.tymethod) {
27         border-bottom-color: #DDDDDD;
28 }
29
30 .in-band {
31         background-color: white;
32 }
33
34 .invisible {
35         background: rgba(0, 0, 0, 0);
36 }
37
38 .docblock code, .docblock-short code {
39         background-color: #F5F5F5;
40 }
41 pre {
42         background-color: #F5F5F5;
43 }
44
45 .sidebar {
46         background-color: #F1F1F1;
47 }
48
49 .sidebar .current {
50         background-color: #fff;
51 }
52
53 .source .sidebar {
54         background-color: #fff;
55 }
56
57 .sidebar .location {
58         border-color: #000;
59         background-color: #fff;
60         color: #333;
61 }
62
63 .sidebar .version {
64         border-bottom-color: #DDD;
65 }
66
67 .sidebar-title {
68         border-top-color: #777;
69         border-bottom-color: #777;
70 }
71
72 .block a:hover {
73         background: #F5F5F5;
74 }
75
76 .line-numbers span { color: #c67e2d; }
77 .line-numbers .line-highlighted {
78         background-color: #f6fdb0 !important;
79 }
80
81 .docblock h1, .docblock h2, .docblock h3, .docblock h4, .docblock h5 {
82         border-bottom-color: #DDD;
83 }
84
85 .docblock table {
86         border-color: #ddd;
87 }
88
89 .docblock table td {
90         border-top-color: #ddd;
91         border-bottom-color: #ddd;
92 }
93
94 .docblock table th {
95         border-top-color: #ddd;
96         border-bottom-color: #ddd;
97 }
98
99 :target { background: #FDFFD3; }
100
101 :target > .in-band {
102         background: #FDFFD3;
103 }
104
105 .content .method .where,
106 .content .fn .where,
107 .content .where.fmt-newline {
108         color: #4E4C4C;
109 }
110
111 .content .highlighted {
112         color: #000 !important;
113         background-color: #ccc;
114 }
115 .content .highlighted a, .content .highlighted span { color: #000 !important; }
116 .content .highlighted.trait { background-color: #c7b6ff; }
117 .content .highlighted.mod,
118 .content .highlighted.externcrate { background-color: #afc6e4; }
119 .content .highlighted.enum { background-color: #b4d1b9; }
120 .content .highlighted.struct { background-color: #e7b1a0; }
121 .content .highlighted.union { background-color: #b7bd49; }
122 .content .highlighted.fn,
123 .content .highlighted.method,
124 .content .highlighted.tymethod { background-color: #c6afb3; }
125 .content .highlighted.type { background-color: #ffc891; }
126 .content .highlighted.foreigntype { background-color: #f5c4ff; }
127 .content .highlighted.macro { background-color: #8ce488; }
128 .content .highlighted.constant,
129 .content .highlighted.static { background-color: #c3e0ff; }
130 .content .highlighted.primitive { background-color: #9aecff; }
131
132 .content span.enum, .content a.enum, .block a.current.enum { color: #508157; }
133 .content span.struct, .content a.struct, .block a.current.struct { color: #df3600; }
134 .content span.type, .content a.type, .block a.current.type { color: #ba5d00; }
135 .content span.foreigntype, .content a.foreigntype, .block a.current.foreigntype { color: #cd00e2; }
136 .content span.macro, .content a.macro, .block a.current.macro { color: #068000; }
137 .content span.union, .content a.union, .block a.current.union { color: #767b27; }
138 .content span.constant, .content a.constant, .block a.current.constant,
139 .content span.static, .content a.static, .block a.current.static { color: #546e8a; }
140 .content span.primitive, .content a.primitive, .block a.current.primitive { color: #2c8093; }
141 .content span.externcrate,
142 .content span.mod, .content a.mod, .block a.current.mod { color: #4d76ae; }
143 .content span.trait, .content a.trait, .block a.current.trait { color: #7c5af3; }
144 .content span.fn, .content a.fn, .block a.current.fn,
145 .content span.method, .content a.method, .block a.current.method,
146 .content span.tymethod, .content a.tymethod, .block a.current.tymethod,
147 .content .fnname { color: #9a6e31; }
148
149 pre.rust .comment { color: #8E908C; }
150 pre.rust .doccomment { color: #4D4D4C; }
151
152 nav {
153         border-bottom-color: #e0e0e0;
154 }
155 nav.main .current {
156         border-top-color: #000;
157         border-bottom-color: #000;
158 }
159 nav.main .separator {
160         border: 1px solid #000;
161 }
162 a {
163         color: #000;
164 }
165
166 .docblock a, .docblock-short a, .stability a {
167         color: #3873AD;
168 }
169
170 a.test-arrow {
171         color: #f5f5f5;
172 }
173
174 .collapse-toggle {
175         color: #999;
176 }
177
178 .search-input {
179         color: #555;
180         box-shadow: 0 0 0 1px #e0e0e0, 0 0 0 2px transparent;
181         background-color: white;
182 }
183
184 .search-input:focus {
185         border-color: #66afe9;
186 }
187
188 .stab.unstable { background: #FFF5D6; border-color: #FFC600; }
189 .stab.deprecated { background: #F3DFFF; border-color: #7F0087; }
190 .stab.portability { background: #C4ECFF; border-color: #7BA5DB; }
191
192 .module-item .stab {
193         color: #000;
194 }
195
196 #help > div {
197         background: #e9e9e9;
198         border-color: #bfbfbf;
199 }
200
201 .since {
202         color: grey;
203 }
204
205 tr.result span.primitive::after {
206         color: black;
207 }
208
209 .line-numbers :target { background-color: transparent; }
210
211 /* Code highlighting */
212 pre.rust .kw { color: #8959A8; }
213 pre.rust .kw-2, pre.rust .prelude-ty { color: #4271AE; }
214 pre.rust .number, pre.rust .string { color: #718C00; }
215 pre.rust .self, pre.rust .bool-val, pre.rust .prelude-val,
216 pre.rust .attribute, pre.rust .attribute .ident { color: #C82829; }
217 pre.rust .macro, pre.rust .macro-nonterminal { color: #3E999F; }
218 pre.rust .lifetime { color: #B76514; }
219 pre.rust .question-mark {
220         color: #ff9011;
221 }
222
223 a.test-arrow {
224         background-color: rgba(78, 139, 202, 0.2);
225 }
226
227 a.test-arrow:hover{
228         background-color: #4e8bca;
229 }
230
231 .toggle-label {
232         color: #999;
233 }
234
235 :target > code {
236         background: #FDFFD3;
237 }
238
239 pre.compile_fail {
240         border-left: 2px solid rgba(255,0,0,.4);
241 }
242
243 pre.compile_fail:hover, .information:hover + pre.compile_fail {
244         border-left: 2px solid #f00;
245 }
246
247 pre.ignore {
248         border-left: 2px solid rgba(255,142,0,.4);
249 }
250
251 pre.ignore:hover, .information:hover + pre.ignore {
252         border-left: 2px solid #ff9200;
253 }
254
255 .tooltip.compile_fail {
256         color: rgba(255,0,0,.3);
257 }
258
259 .information > .compile_fail:hover {
260         color: #f00;
261 }
262
263 .tooltip.ignore {
264         color: rgba(255,142,0,.3);
265 }
266
267 .information > .ignore:hover {
268         color: rgba(255,142,0,1);
269 }
270
271 .search-failed > a {
272         color: #0089ff;
273 }
274
275 .tooltip .tooltiptext {
276         background-color: black;
277         color: #fff;
278 }
279
280 .tooltip .tooltiptext::after {
281         border-color: transparent black transparent transparent;
282 }
283
284 .important-traits .tooltip .tooltiptext {
285         background-color: white;
286         color: black;
287         border-color: black;
288 }
289
290 #titles > div {
291         border-bottom-color:  #ccc;
292 }
293
294 #titles > div.selected {
295         border-bottom-color: #0078ee;
296 }
297
298 #titles > div:hover {
299         border-bottom-color: #0089ff;
300 }
301
302 #titles > div > div.count {
303         color: #888;
304 }
305
306 .modal {
307         background-color: rgba(0,0,0,0.3);
308 }
309
310 .modal-content {
311         background-color: #eee;
312         border-color: #999;
313 }
314
315 .modal-content > .close {
316         background-color: #eee;
317         border-color: #999;
318 }
319
320 .modal-content > .close:hover {
321         background-color: #ff1f1f;
322         color: white;
323 }
324
325 .modal-content > .whiter {
326         background-color: #eee;
327 }
328
329 .modal-content > .close:hover + .whiter {
330         background-color: #ff1f1f;
331 }
332
333 @media (max-width: 700px) {
334         .sidebar-menu {
335                 background-color: #F1F1F1;
336                 border-bottom-color: #e0e0e0;
337                 border-right-color: #e0e0e0;
338         }
339
340         .sidebar-elems {
341                 background-color: #F1F1F1;
342                 border-right-color: #000;
343         }
344
345         #sidebar-filler {
346                 background-color: #F1F1F1;
347                 border-bottom-color: #e0e0e0;
348         }
349 }
350
351 kbd {
352         color: #000;
353         background-color: #fafbfc;
354         border-color: #d1d5da;
355         border-bottom-color: #c6cbd1;
356         box-shadow-color: #c6cbd1;
357 }
358
359 #theme-picker {
360         border-color: #e0e0e0;
361         background-color: #fff;
362 }
363
364 #theme-picker:hover, #theme-picker:focus {
365         border-color: #717171;
366 }
367
368 #theme-choices {
369         border-color: #ccc;
370         background-color: #fff;
371 }
372
373 #theme-choices > button:not(:first-child) {
374         border-top-color: #e0e0e0;
375 }
376
377 #theme-choices > button:hover, #theme-choices > button:focus {
378         background-color: #eee;
379 }
380
381 @media (max-width: 700px) {
382         #theme-picker {
383                 background: #fff;
384         }
385 }