1/*
2
3Dark 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 black;
13  padding-top: 0.5em;
14}
15
16pre code {
17  display: block;
18  background: #444;
19}
20
21.keyword,
22.literal,
23.change,
24.winutils,
25.flow,
26.lisp .title {
27  color: white;
28}
29
30pre code,
31.ruby .subst {
32  color: #DDD;
33}
34
35.string,
36.function .title,
37.class .title,
38.ini .title,
39.tag .attribute .value,
40.css .rules .value,
41.preprocessor,
42.ruby .symbol,
43.ruby .instancevar,
44.ruby .class .parent,
45.built_in,
46.sql .aggregate,
47.django .template_tag,
48.django .variable,
49.smalltalk .class,
50.javadoc,
51.ruby .string,
52.django .filter .argument,
53.smalltalk .localvars,
54.smalltalk .array,
55.attr_selector,
56.pseudo,
57.addition,
58.stream,
59.envvar,
60.apache .tag,
61.apache .cbracket {
62  color: #D88;
63}
64
65.comment,
66.java .annotation,
67.python .decorator,
68.template_comment,
69.pi,
70.doctype,
71.deletion,
72.shebang,
73.apache .sqbracket {
74  color: #777;
75}
76
77.keyword,
78.literal,
79.css .id,
80.phpdoc,
81.function .title,
82.class .title,
83.vbscript .built_in,
84.sql .aggregate,
85.rsl .built_in,
86.smalltalk .class,
87.xml .tag .title,
88.diff .header,
89.chunk,
90.winutils,
91.bash .variable,
92.lisp .title,
93.apache .tag {
94  font-weight: bold;
95}
96
97.html .css,
98.html .javascript,
99.html .vbscript {
100  opacity: 0.5;
101}
102