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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
/* ikiwiki local style sheet */
/* Add local styling here, instead of modifying style.css. */
/* Fonts */
body {
font-family: "Trebuchet MS",
"Luxi Sans",
"Bitstream Vera Sans",
"Tahoma",
"Verdana",
"Helvetica",
"Arial",
sans-serif;
font-size: 100.01%;
}
pre, tt, code {
font-family: "Bitstream Vera Sans Mono",
"Luxi Mono",
"Courier New",
"Courier",
monospace;
}
/* Links */
a {
color: #3E5F81;
}
a:hover {
color:#D52;
}
a:visited {
color:#D52;
}
/* Div with the full Header */
.pageheader {
background-color: #3e5f81;
}
.pageheader a {
color:#fff;
}
/* Div with path in .pageheader */
.header {
padding-bottom: 0.5em;
padding-top: 0.5em;
background-color: #fff;
}
.header a {
color: #3E5F81;
}
.header a:hover {
color: #d52;
}
/* Actions in the Header */
.actions {
color: #FFF;
}
/* Footer */
#backlinks {
color: #FFF;
background-color: #3E5F81;
}
#backlinks a {
color: #FFF;
}
/* Tables */
table
{
color:#000000;
padding:0px;
}
th
{
color:#000;
background:#CCC;
font-weight:bold;
padding:0.5em 1em;
text-align:center;
vertical-align:top;
}
tr
{
font-weight:normal;
}
tr:nth-child(odd) td
{
background:#E6E6E6;
}
tr:nth-child(even) td
{
background:#CCC;
}
td
{
background:#ffffff;
padding:0.5em 1em;
text-align:left;
vertical-align:top;
}
img.imgwithborder
{
border: 1px solid #3e5f81;
}
|