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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
/*
* CSS styleshet for the "Denim" theme.
*
* Author: Thomas Bruce Dyrud (thomasbrucedyrud[at]gmail.com)
*
*/
@import "default.css";
/* The primary background colour. */
.bgcolor1 {
background-color: #456993;
}
/* The secondary background colour, light blue, primary theme colour. */
.bgcolor2, .ruleTableHeader, .log {
background-color: #456993;
color: #EFE9D9;
}
/* Background colour for selected header, log etc. */
.headerSelected {
color: #EFE9D9;
background-color: #456993;
border: 1px solid #EFE9D9;
}
/* The secondary foreground colour used for h1, details etc. */
h1, .detail, .albumComment {
color: #EFE9D9;
}
/* Foreground colour used for h2, bold and tr. */
h2, b, tr {
color: #EFE9D9;
}
/* Table sizing */
table {
margin: 0 0 0 0;
}
/* Main frame image & colour */
.mainframe {
background-color: #456993;
background-position:right;
}
/* Back image */
.back {
background-image:url( "../icons/denim/back.png" );
}
/* Forward image */
.forward {
background-image:url( "../icons/denim/forward.png" );
}
/* Link colour */
a:link, a:active, a:visited, a:link *, a:active *, a:visited * {
color: #B6BEC2;
}
/* Link hover colour */
a:hover, a:hover * {
text-decoration: underline;
color: #B6BEC2;
}
/* Colour for warning messages. */
.warning {
color: #990099;
}
/* The primary foreground colour. */
body {
color: #EFE9D9;
background-color: #DDDDDD;
}
html {
background-color: transparent;
}
label, p {
color: #CCC;
}
|