1/*
2
3Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
4
5*/
6
7pre code[class]:after {
8  content: 'highlight: ' attr(class);
9  display: block; text-align: right;
10  font-size: smaller;
11  color: #CCC; background: white;
12  border-top: solid 1px;
13  padding-top: 0.5em;
14}
15
16pre code {
17  display: block;
18  background: #F0F0F0;
19}
20
21pre code,
22.ruby .subst,
23.xml .title,
24.lisp .title {
25  color: black;
26}
27
28.string,
29.title,
30.parent,
31.tag .attribute .value,
32.rules .value,
33.rules .value .number,
34.preprocessor,
35.ruby .symbol,
36.instancevar,
37.aggregate,
38.template_tag,
39.django .variable,
40.smalltalk .class,
41.addition,
42.flow,
43.stream,
44.bash .variable,
45.apache .tag,
46.apache .cbracket {
47  color: #800;
48}
49
50.comment,
51.annotation,
52.template_comment,
53.diff .header,
54.chunk {
55  color: #888;
56}
57
58.number,
59.date,
60.regexp,
61.literal,
62.smalltalk .symbol,
63.smalltalk .char,
64.change {
65  color: #080;
66}
67
68.label,
69.javadoc,
70.ruby .string,
71.decorator,
72.filter .argument,
73.localvars,
74.array,
75.attr_selector,
76.pseudo,
77.pi,
78.doctype,
79.deletion,
80.envvar,
81.shebang,
82.apache .sqbracket {
83  color: #88F;
84}
85
86.keyword,
87.id,
88.phpdoc,
89.title,
90.built_in,
91.aggregate,
92.smalltalk .class,
93.winutils,
94.bash .variable,
95.apache .tag {
96  font-weight: bold;
97}
98
99.html .css,
100.html .javascript,
101.html .vbscript {
102  opacity: 0.5;
103}
104