blob: c15c9fa18c1e733843257509f94974af87a0fca0 [file] [log] [blame]
eh@google.comb6313712013-12-17 22:56:22 +00001table {
2 border-collapse: collapse;
3}
4
5td, th {
6 border: 1px solid #ccc;
7 padding: 2px 12px;
8 font-size: 10pt;
9}
10
11code, samp, var {
12 color: #060;
13}
14
15pre {
16 font-size: 10pt;
17 display: block;
18 color: #060;
19 background-color: #e8fff6;
20 border-color: #f0fff0;
21 border-style: solid;
22 border-top-width: 1px;
23 border-bottom-width: 1px;
24 border-right-width: 1px;
25 border-left-width: 5px;
26 padding-left: 12px;
27 padding-right: 12px;
28 padding-top: 4px;
29 padding-bottom: 4px;
30}
31
32pre.badcode {
33 color: #c00;
34 background-color: #ffe6d8;
35 border-color: #fff0f0;
36}
37
38hr {
39 margin-top: 3.5em;
40 border-width: 1px;
41 color: #fff;
42}
43
44html {
45 margin-top:2em;
46 margin-left:10%;
47 margin-right:10%;
48 padding:0;
49}
50
51.bp-reset-element,
52body,
53h1,
54h2,
55h3,
56h4,
57h5,
58h6,
59article,
60aside,
61details,
62figcaption,
63figure,
64footer,
65header,
66hgroup,
67menu,
68nav,
69section,
70summary,
71blockquote,
72q,
73th,
74td,
75caption,
76table,
77div,
78span,
79object,
80iframe,
81p,
82pre,
83a,
84abbr,
85acronym,
86address,
87code,
88del,
89dfn,
90em,
91img,
92dl,
93dt,
94dd,
95ol,
96ul,
97li,
98fieldset,
99form,
100label,
101legend,
102caption,
103tbody,
104tfoot,
105thead,
106tr {
107 margin:0;
108 padding:0;
109 border:0;
110 font-weight:inherit;
111 font-style:inherit;
112 font-size:100%;
113 font-family:inherit;
114 vertical-align:baseline;
115}
116
117body {
118 font-family:'Arial', sans-serif;
119 font-size:81.25%;
120 color:#222;
121 background-color:#fff;
122 line-height:1.67;
123 overflow: auto;
124}
125
126.change {
127 text-align: right;
128 margin-bottom:1em;
129}
130
131h1,
132h2,
133h3,
134h4,
135h5,
136h6 {
137 font-weight:bold;
138}
139
140h1 {
141 margin-bottom:.50em;
142 text-align: center
143}
144
145h2,
146h3,
147h4,
148h5,
149h6 {
150 margin-top:1.5em;
151 margin-bottom:.75em;
152}
153
154h1 {font-size:200%;}
155h2 {font-size:167%;}
156h3 {font-size:133%;}
157h4 {font-size:120%;}
158h5 {font-size:110%;}
159
160p {
161 margin:0 0 1.5em;
162}
163
164a[href=''] {
165 cursor:default;
166}
167
168h1 img,
169h2 img,
170h3 img,
171h4 img,
172h5 img,
173h6 img {
174 margin:0;
175}
176
177a img {
178 border:none;
179}
180
181pre {
182 margin:1.5em 0;
183 white-space:pre;
184}
185
186pre,
187code,
188kbd,
189tt {
190 font:1em 'Droid Sans Mono', monospace;
191 line-height:1.5;
192}
193
194dl {
195 margin:0 0 1.5em 0;
196}
197
198dl dt {
199 font-weight:bold;
200}
201
202dd {
203 margin-left:1.5em;
204}
205
eh@google.comd1e49942013-12-30 20:03:36 +0000206dd.toc3 {
207 margin-left:3em;
208}
209
eh@google.comb6313712013-12-17 22:56:22 +0000210hr {
211 height:0;
212 border:0;
213 border-top:1px solid #ccc;
214 background-color:#ccc;
215}
216
217table {
218 border:1px solid #bbb;
219 border-spacing:0;
220 border-collapse:collapse;
221 margin:0 0 1.5em;
222 vertical-align:middle;
223 width:100%;
224}
225
226table.unlined,
227table.unlined th,
228table.unlined tr,
229table.unlined td {
230 border:0;
231}
232
233th,
234td,
235caption {
236 float:none !important;
237 text-align:left;
238 font-weight:normal;
239 vertical-align:middle;
240 padding:4px;
241}
242
243caption {
244 padding:0;
245}
246
247td {
248 border:1px solid #bbb;
249 vertical-align:top;
250}
251
252th {
253 border:0;
254 border-bottom:1px solid black;
255 font-weight:bold;
256 background:rgb(229, 236, 249);
257}
258
259table th code {
260 background-color:inherit;
261 color:inherit;
262}
263
264table tfoot th {
265 border:1px solid #bbb;
266}
267
268tfoot {
269 font-style:italic;
270}
271
272caption {
273 background:#eee;
274}
275
276table[border='0'] {
277 border:none;
278}
279
280table[border='0']>tbody>tr>td,
281table[border='0']>tr>td {
282 border:none;
283}
284
285tr.alt td,
286td.alt {
287 background-color:#efefef;
288}
289
290table.striped tr:nth-child(even) td,
291table tr.even td {
292 background:#efefef;
293}
294
295table.columns {
296 border:none;
297}
298
299table.columns>tbody>tr>td,
300table.columns>tr>td {
301 border:none;
302 padding:0 3em 0 0;
303}
304
305table.columns>tbody>tr>td:last-child,
306table.columns>tr>td:last-child {
307 border:none;
308 padding:0;
309}
310
311ul,
312ol {
313 margin:0 1.5em 1.5em 0;
314 padding-left:2em;
315}
316
317li ul,
318li ol {
319 margin:0;
320}
321
322ul {
323 list-style-type:disc;
324}
325
326ol {
327 list-style-type:decimal;
328}
329
330ul {
331 list-style-type:disc;
332}
333
334ul ul {
335 list-style-type:circle;
336}
337
338ul ul ul {
339 list-style-type:square;
340}
341
342ul.disc {
343 list-style-type:disc;
344}
345
346ul.circle {
347 list-style-type:circle;
348}
349
350ul.square {
351 list-style-type:square;
352}
353
354ol {
355 list-style-type:decimal;
356}
357
358ol ol {
359 list-style-type:lower-alpha;
360}
361
362ol ol ol {
363 list-style-type:lower-roman;
364}
365
366ol ul {
367 list-style-type:circle;
368}
369
370ol.decimal {
371 list-style-type:decimal;
372}
373
374ol.upper-alpha {
375 list-style-type:upper-alpha;
376}
377
378ol.lower-alpha {
379 list-style-type:lower-alpha;
380}
381
382ol.upper-roman {
383 list-style-type:upper-roman;
384}
385
386ol.lower-roman {
387 list-style-type:lower-roman;
388}
389
390ol.nolist,
391ul.nolist {
392 padding-left:0;
393 list-style-image:none;
394 list-style-type:none;
395 margin-left:0;
396}
397
398.center {
399 text-align:center;
400}
401
402code,
403kbd,
404pre {
405 color:#007000;
406}
407
408kbd {
409 font-weight: bold;
410}
411
412table.striped code {
413 background-color:inherit;
414}
415
416pre {
417 padding:6px 10px;
418 background-color:#FAFAFA;
419 border:1px solid #bbb;
420 overflow:auto;
421}
422
423pre.prettyprint {
424 padding:6px 10px !important;
425 border:1px solid #bbb !important;
426}
427
428code.bad, code.badcode {
429 background-color:#fcc;
430}
431pre.bad, pre.badcode {
432 background-color:#fcc;
433 border-top:1px inset #a03;
434 border-left:1px inset #a03;
435}
436
437.tip {
438 background-color:#fffbd9;
439 padding:6px 8px 6px 10px;
440 border-left:6px solid #ffef70;
441}
442
443.note {
444 background-color:#e5ecf9;
445 padding:6px 8px 6px 10px;
446 border-left:6px solid #36c;
447}
448
449@media print {
450
451 .str {
452 color:#060;
453 }
454
455 .kwd {
456 color:#006;
457 font-weight:bold;
458 }
459
460 .com {
461 color:#600;
462 font-style:italic;
463 }
464
465 .typ {
466 color:#404;
467 font-weight:bold;
468 }
469
470 .lit {
471 color:#044;
472 }
473
474 .pun,
475 .opn,
476 .clo {
477 color:#440;
478 }
479
480 .pln {
481 color:#000;
482 }
483
484 .tag {
485 color:#006;
486 font-weight:bold;
487 }
488
489 .atn {
490 color:#404;
491 }
492
493 .atv {
494 color:#060;
495 }
496
497 h1 {
498 font-style:italic;
499 }
500}
501
502ol.linenums {
503 margin-top:0;
504 margin-bottom:0;
505}
506
507code {
508 background-color:#FAFAFA;
509 padding: 0.25em 0.5em;
510 white-space: nowrap
511}