forked from cblgh/cerca
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.css
More file actions
50 lines (45 loc) · 1.15 KB
/
theme.css
File metadata and controls
50 lines (45 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/* below are the style rules that define the visual theme of the forum
* change these to change the forum's colours */
/* normal theme */
/* default theme colors:
* black
* wheat - bg
* #666 - visited link
* darkred - highlights: links, certain tags
*/
body { background: red; color: blue; }
textarea { background: black; color: wheat; }
ul li { list-style-type: circle; }
/* post author name is styled with `span > b` */
blockquote { border-left-color: darkred; }
a:not([class]), pre code { color: darkred; }
h1, h2, h2 > a:not([class], :visited), span > b { color: black; }
a:visited { color: #666; }
header a, header a:visited { color: darkred; }
/* halloween theme */
/*
/* halloween theme colors
* #ff8000
* wheat
* gray
* #111
* #f2f2f2
*/
/*
header svg { fill: #ff8000; }
#logo {
width: 48px;
height: 48px;
display: block;
}
p { color: #f2f2f2; }
blockquote { border-color: wheat; }
textarea { background: black; color: wheat; }
h1 a:visited, a:not([class]) { color: wheat; }
a:visited { color: gray; }
body { background: #111; color: #ff8000; }
header details a:visited { color: #ff8000; }
/* author colors */
/*
span > b { color: #ff8000; }
*/