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
|
BODY {
background-color: #b6c6e5;
color: black;
margin: 0px;
}
H1 {
text-decoration: none;
font-family: Verdana,Arial,Helvetica,sans-serif;
font-style: normal;
font-weight: bold;
font-size: 20pt;
}
H2 {
text-decoration: none;
font-family: Verdana,Arial,Helvetica,sans-serif;
font-style: normal;
font-weight: bold;
font-size: 14pt;
}
H3 {
text-decoration: none;
font-family: Verdana,Arial,Helvetica,sans-serif;
font-style: normal;
font-weight: bold;
font-size: 12pt;
}
BODY, P, DIV, TD, TH, TR, FORM, OL, UL, LI, INPUT, TEXTAREA, SELECT, A
{
text-decoration: none;
font-family: Verdana,Arial,Helvetica,sans-serif;
font-style: normal;
font-size: 10pt;
}
A {
text-decoration: underline;
}
.bgbox {
left-border-width: 1px;
border-color: #000000;
}
.menulink {
color: #f0f0f0;
line-height: 140%;
}
.buildok {
background-color: #00ff00;
width: 3em;
}
.buildwarn {
background-color: #ffff00;
width: 3em;
}
.buildfail {
background-color: #ff8080;
width: 3em;
}
.gccwarn {
background-color: #ffff00;
}
.gccerror {
background-color: #ff8080;
}
.faqq {
font-weight: bold;
}
.faqa {
margin-left: 2em;
}
PRE {
font-size: 9pt;
}
.changetable, .bugs, .dailymod, .buildstatus, .archive {
border: outset 2px #ffffff;
}
.listtable tr {
vertical-align: top;
}
.changetable td, .bugs td, .archive td {
background-color: #c6d6f5;
padding: 4px;
}
|