Skip to content

Commit 8a9d41c

Browse files
committed
added dist folder back now that git downloads are gone
1 parent f0f6a07 commit 8a9d41c

19 files changed

+6497
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ wordnik*.zip
33
*.ipr
44
*.iml
55
*.iws
6-
dist/
76
lib/*.jar
87
META-INF/
98
web/

dist/css/hightlight.default.css

Lines changed: 135 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,135 @@
1+
/*
2+
3+
Original style from softwaremaniacs.org (c) Ivan Sagalaev <[email protected]>
4+
5+
*/
6+
7+
pre code {
8+
display: block; padding: 0.5em;
9+
background: #F0F0F0;
10+
}
11+
12+
pre code,
13+
pre .subst,
14+
pre .tag .title,
15+
pre .lisp .title,
16+
pre .clojure .built_in,
17+
pre .nginx .title {
18+
color: black;
19+
}
20+
21+
pre .string,
22+
pre .title,
23+
pre .constant,
24+
pre .parent,
25+
pre .tag .value,
26+
pre .rules .value,
27+
pre .rules .value .number,
28+
pre .preprocessor,
29+
pre .ruby .symbol,
30+
pre .ruby .symbol .string,
31+
pre .aggregate,
32+
pre .template_tag,
33+
pre .django .variable,
34+
pre .smalltalk .class,
35+
pre .addition,
36+
pre .flow,
37+
pre .stream,
38+
pre .bash .variable,
39+
pre .apache .tag,
40+
pre .apache .cbracket,
41+
pre .tex .command,
42+
pre .tex .special,
43+
pre .erlang_repl .function_or_atom,
44+
pre .markdown .header {
45+
color: #800;
46+
}
47+
48+
pre .comment,
49+
pre .annotation,
50+
pre .template_comment,
51+
pre .diff .header,
52+
pre .chunk,
53+
pre .markdown .blockquote {
54+
color: #888;
55+
}
56+
57+
pre .number,
58+
pre .date,
59+
pre .regexp,
60+
pre .literal,
61+
pre .smalltalk .symbol,
62+
pre .smalltalk .char,
63+
pre .go .constant,
64+
pre .change,
65+
pre .markdown .bullet,
66+
pre .markdown .link_url {
67+
color: #080;
68+
}
69+
70+
pre .label,
71+
pre .javadoc,
72+
pre .ruby .string,
73+
pre .decorator,
74+
pre .filter .argument,
75+
pre .localvars,
76+
pre .array,
77+
pre .attr_selector,
78+
pre .important,
79+
pre .pseudo,
80+
pre .pi,
81+
pre .doctype,
82+
pre .deletion,
83+
pre .envvar,
84+
pre .shebang,
85+
pre .apache .sqbracket,
86+
pre .nginx .built_in,
87+
pre .tex .formula,
88+
pre .erlang_repl .reserved,
89+
pre .prompt,
90+
pre .markdown .link_label,
91+
pre .vhdl .attribute,
92+
pre .clojure .attribute,
93+
pre .coffeescript .property {
94+
color: #88F
95+
}
96+
97+
pre .keyword,
98+
pre .id,
99+
pre .phpdoc,
100+
pre .title,
101+
pre .built_in,
102+
pre .aggregate,
103+
pre .css .tag,
104+
pre .javadoctag,
105+
pre .phpdoc,
106+
pre .yardoctag,
107+
pre .smalltalk .class,
108+
pre .winutils,
109+
pre .bash .variable,
110+
pre .apache .tag,
111+
pre .go .typename,
112+
pre .tex .command,
113+
pre .markdown .strong,
114+
pre .request,
115+
pre .status {
116+
font-weight: bold;
117+
}
118+
119+
pre .markdown .emphasis {
120+
font-style: italic;
121+
}
122+
123+
pre .nginx .built_in {
124+
font-weight: normal;
125+
}
126+
127+
pre .coffeescript .javascript,
128+
pre .javascript .xml,
129+
pre .tex .formula,
130+
pre .xml .javascript,
131+
pre .xml .vbscript,
132+
pre .xml .css,
133+
pre .xml .cdata {
134+
opacity: 0.5;
135+
}

0 commit comments

Comments
 (0)