JS-Dateien für Rückwärtskompatibilität unter alten Namen zugänglich gemacht
[website] / src / main / webapp / less / base / prettify.less
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         overflow-x: scroll;
19 }
20
21 pre.prettyprint {
22         width: 95%;
23         margin: 1em auto;
24         padding: 1em;
25         white-space: pre;
26 }
27
28
29 /* Specify class=linenums on a pre to get line numbering */
30 ol.linenums {
31    margin-top: 0;
32    margin-bottom: 0;
33    color: #AEAEAE;
34 } /* IE indents via margin-left */
35
36 li.L0, li.L1, li.L2, li.L3, li.L4, li.L5, li.L6, li.L7, li.L8, li.L9
37 {
38     list-style-type: decimal;
39 }