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
|
/* 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;
}
/* 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;
}
|