OLD | NEW |
| (Empty) |
1 /* Pretty printing styles. Used with prettify.js. */ | |
2 /* Vim sunburst theme by David Leibovic */ | |
3 | |
4 pre .str, code .str { color: #65B042; } /* string - green */ | |
5 pre .kwd, code .kwd { color: #E28964; } /* keyword - dark pink */ | |
6 pre .com, code .com { color: #AEAEAE; font-style: italic; } /* comment - gray */ | |
7 pre .typ, code .typ { color: #89bdff; } /* type - light blue */ | |
8 pre .lit, code .lit { color: #3387CC; } /* literal - blue */ | |
9 pre .pun, code .pun { color: #fff; } /* punctuation - white */ | |
10 pre .pln, code .pln { color: #fff; } /* plaintext - white */ | |
11 pre .tag, code .tag { color: #89bdff; } /* html/xml tag - light blue */ | |
12 pre .atn, code .atn { color: #bdb76b; } /* html/xml attribute name - khaki */ | |
13 pre .atv, code .atv { color: #65B042; } /* html/xml attribute value - green */ | |
14 pre .dec, code .dec { color: #3387CC; } /* decimal - blue */ | |
15 | |
16 pre.prettyprint, code.prettyprint { | |
17 background-color: #000; | |
18 -moz-border-radius: 8px; | |
19 -webkit-border-radius: 8px; | |
20 -o-border-radius: 8px; | |
21 -ms-border-radius: 8px; | |
22 -khtml-border-radius: 8px; | |
23 border-radius: 8px; | |
24 } | |
25 | |
26 pre.prettyprint { | |
27 width: 95%; | |
28 margin: 1em auto; | |
29 padding: 1em; | |
30 white-space: pre-wrap; | |
31 } | |
32 | |
33 | |
34 /* Specify class=linenums on a pre to get line numbering */ | |
35 ol.linenums { margin-top: 0; margin-bottom: 0; color: #AEAEAE; } /* IE indents v
ia margin-left */ | |
36 li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8 { list-style-type: none } | |
37 /* Alternate shading for lines */ | |
38 li.L1,li.L3,li.L5,li.L7,li.L9 { } | |
39 | |
40 @media print { | |
41 pre .str, code .str { color: #060; } | |
42 pre .kwd, code .kwd { color: #006; font-weight: bold; } | |
43 pre .com, code .com { color: #600; font-style: italic; } | |
44 pre .typ, code .typ { color: #404; font-weight: bold; } | |
45 pre .lit, code .lit { color: #044; } | |
46 pre .pun, code .pun { color: #440; } | |
47 pre .pln, code .pln { color: #000; } | |
48 pre .tag, code .tag { color: #006; font-weight: bold; } | |
49 pre .atn, code .atn { color: #404; } | |
50 pre .atv, code .atv { color: #060; } | |
51 } | |
OLD | NEW |