blob: 9c217c746a065c48ccb080efc263419a375c5bd4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
* goldtype theme for ikiwiki
*/
.pageheader {
background-repeat: no-repeat;
background-color: #f2d98d;
padding: 0;
padding-right: 1em;
margin-bottom: 2em;
}
html, body {
background-color: #f2d98d;
}
#content a:hover, #comments a:hover, .sidebar a:hover,
#content a:visited:hover, #comments a:visited:hover, .sidebar a:visited:hover {
color: red;
}
#content a:visited, #comments a:visited, .sidebar a:visited {
color: #37485e;
}
|