source: Dev/trunk/src/client/dojox/highlight/tests/pretty.css @ 521

Last change on this file since 521 was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 3.4 KB
Line 
1/* Pygments default style */
2
3/*code {background-color: #f8f8f8}
4*/
5code .comment {color: #408080; font-style: italic}
6code .comment {color: #408080; font-style: italic}
7
8code .comment.preproc {color: #bc7a00; font-style: normal}
9
10/*code .keyword {color: #008000; font-weight: bold}
11*/
12code .keyword {color: #008000; font-weight: normal}
13code .keyword.pseudo {font-weight: normal}
14
15code .operator {color: #666}
16code .operator.word {color: #a2f}
17
18code .name.builtin {color: #008000}
19code .name.function {color: #00f}
20code .name.class {color: #00f; font-weight: bold}
21code .name.namespace {color: #00f; font-weight: bold}
22code .name.exception {color: #d2413a; font-weight: bold}
23code .name.variable {color: #19177c}
24code .name.constant {color: #800}
25code .name.label {color: #a0a000}
26code .name.entity {color: #999; font-weight: bold}
27code .name.attribute {color: #7d9029}
28code .name.tag {color: #008000; font-weight: bold}
29code .name.decorator {color: #a2f}
30
31code .string {color: #ba2121}
32code .string.doc {font-style: italic}
33code .string.interpol {color: #b68; font-weight: bold}
34code .string.escape {color: #b62; font-weight: bold}
35code .string.regex {color: #b68}
36code .string.symbol {color: #19177c}
37code .string.other {color: #008000}
38
39code .number {color: #666}
40
41/* Pygments simulating SyntaxHighlighter's styles */
42
43/*code {background-color: #f8f8f8}
44*/
45code .comment {color: #080; font-style: italic}
46code .comment.preproc {font-style: normal}
47code .comment.special {font-style: normal; font-weight: bold}
48
49/*code .keyword {color: #a2f; font-weight: bold}
50*/
51code .keyword {color: #0000cc}
52code .keyword.pseudo {font-weight: normal}
53
54code .operator {color: #666}
55/*code .operator.word {color: #a2f; font-weight: bold}
56*/
57code .operator.word {color: #0000cc; font-weight: normal}
58
59/*code .name.builtin {color: #a2f}
60*/
61code .name.builtin {color: #0000cc; font-weight: normal}
62code .name.function {color: #00a000}
63code .name.class {color: #00f}
64code .name.namespace {color: #00f; font-weight: bold}
65code .name.exception {color: #d2413a; font-weight: bold}
66code .name.variable {color: #b8860b}
67code .name.constant {color: #800}
68code .name.label {color: #a0a000}
69code .name.entity {color: #999; font-weight: bold}
70code .name.attribute {color: #b44}
71/*code .name.tag {color: #008000; font-weight: bold}
72*/
73code .name.tag {color: #006699; font-weight: normal}
74code .name.decorator {color: #a2f}
75
76/*code .string {color: #b44}
77*/
78code .string {color: #b44}
79code .string.doc {font-style: italic}
80code .string.interpol {color: #b68; font-weight: bold}
81code .string.escape {color: #b62; font-weight: bold}
82code .string.regex {color: #b68}
83code .string.symbol {color: #b8860b}
84code .string.other {color: #008000}
85
86code .number {color: #666}
87
88pre {
89        padding:0;
90        margin:0;
91        display:block;
92}
93code {
94        background-color: #inherit;
95        line-height:1.2em;
96        display:block;
97}
98span.tab { padding-left:8px; }
99.formatted ol {
100        margin-left:50px;
101        padding:0;
102        background-color:#fff;
103        font-family: monospace;
104        list-style-type: decimal-leading-zero;
105}
106
107.formatted ol li.even {
108        background-color:#d0d0d0;
109        border-left-style:solid;
110        border-color: #6ce26c;
111        color: #808080;
112}
113.formatted ol li.even pre {
114        background-color:#fff;
115        color: #000;
116        padding-left: 4px;
117}
118.formatted ol li.odd {
119        background-color:#d0d0d0;
120        border-left-style:solid;
121        border-color: #6ce26c;
122        color: #808080;
123}
124.formatted ol li.odd pre {
125        background-color:#f0f0f0;
126        color: #000;
127        padding-left: 4px;
128}
129
130#container {
131        width:90%;
132        margin:0 auto;
133}
134h1 {
135        font-size:20pt;
136}
Note: See TracBrowser for help on using the repository browser.