|
1
|
/* General settings for the entire page */ |
|
2
|
body { |
|
3
|
margin:0px 0px 0px 0px; |
|
4
|
padding:0px; |
|
5
|
font-family:verdana, arial, helvetica, "sans serif"; |
|
6
|
color:#333; |
|
7
|
background-color:white; |
|
8
|
text-size-adjust: none; |
|
9
|
} |
|
10
|
|
|
11
|
/* consistent colours */ |
|
12
|
h2 { |
|
13
|
color: #333; |
|
14
|
} |
|
15
|
h3 { |
|
16
|
color: #333; |
|
17
|
} |
|
18
|
|
|
19
|
/* The project logo in the upper left-hand corner of each page */ |
|
20
|
div.logo { |
|
21
|
display: table-cell; |
|
22
|
text-align: left; |
|
23
|
vertical-align: bottom; |
|
24
|
font-weight: bold; |
|
25
|
color: #333; |
|
26
|
white-space: nowrap; |
|
27
|
} |
|
28
|
|
|
29
|
/* The page title centered at the top of each page */ |
|
30
|
div.title { |
|
31
|
display: table-cell; |
|
32
|
font-size: 2em; |
|
33
|
font-weight: bold; |
|
34
|
text-align: center; |
|
35
|
color: #333; |
|
36
|
vertical-align: bottom; |
|
37
|
width: 100%; |
|
38
|
} |
|
39
|
|
|
40
|
/* The login status message in the top right-hand corner */ |
|
41
|
div.status { |
|
42
|
display: table-cell; |
|
43
|
padding-right: 10px; |
|
44
|
text-align: right; |
|
45
|
vertical-align: bottom; |
|
46
|
padding-bottom: 5px; |
|
47
|
color: #333; |
|
48
|
font-size: 0.8em; |
|
49
|
font-weight: bold; |
|
50
|
white-space: nowrap; |
|
51
|
} |
|
52
|
|
|
53
|
/* The header across the top of the page */ |
|
54
|
header { |
|
55
|
margin:10px 0px 10px 0px; |
|
56
|
padding:1px 0px 0px 20px; |
|
57
|
border-style:solid; |
|
58
|
border-color:black; |
|
59
|
border-width:1px 0px; |
|
60
|
background-color:#eee; |
|
61
|
} |
|
62
|
|
|
63
|
/* The main menu bar that appears at the top left of the page beneath |
|
64
|
** the header. Width must be co-ordinated with the container below */ |
|
65
|
nav.mainmenu { |
|
66
|
float: left; |
|
67
|
margin-left: 10px; |
|
68
|
margin-right: 20px; |
|
69
|
font-size: 0.9em; |
|
70
|
font-weight: bold; |
|
71
|
padding:5px; |
|
72
|
background-color:#eee; |
|
73
|
border:1px solid #999; |
|
74
|
width:6em; |
|
75
|
} |
|
76
|
|
|
77
|
/* Main menu is now a list */ |
|
78
|
nav.mainmenu ul { |
|
79
|
padding: 0; |
|
80
|
list-style:none; |
|
81
|
} |
|
82
|
nav.mainmenu a, nav.mainmenu a:visited{ |
|
83
|
padding: 1px 10px 1px 10px; |
|
84
|
color: #333; |
|
85
|
text-decoration: none; |
|
86
|
} |
|
87
|
nav.mainmenu a:hover { |
|
88
|
color: #eee; |
|
89
|
background-color: #333; |
|
90
|
} |
|
91
|
|
|
92
|
/* Container for the sub-menu and content so they don't spread |
|
93
|
** out underneath the main menu */ |
|
94
|
#container { |
|
95
|
padding-left: 9em; |
|
96
|
} |
|
97
|
|
|
98
|
/* The submenu bar that *sometimes* appears below the main menu */ |
|
99
|
div.submenu, div.sectionmenu { |
|
100
|
padding: 3px 10px 3px 10px; |
|
101
|
font-size: 0.9em; |
|
102
|
text-align: center; |
|
103
|
border:1px solid #999; |
|
104
|
border-width:1px 0px; |
|
105
|
background-color: #eee; |
|
106
|
color: #333; |
|
107
|
} |
|
108
|
div.submenu a, div.submenu a:visited, div.sectionmenu>a.button:link, |
|
109
|
div.sectionmenu>a.button:visited, div.submenu label { |
|
110
|
padding: 3px 10px 3px 10px; |
|
111
|
color: #333; |
|
112
|
text-decoration: none; |
|
113
|
} |
|
114
|
div.submenu a:hover, div.sectionmenu>a.button:hover, div.submenu label:hover { |
|
115
|
color: #eee; |
|
116
|
background-color: #333; |
|
117
|
} |
|
118
|
|
|
119
|
/* All page content from the bottom of the menu or submenu down to |
|
120
|
** the footer */ |
|
121
|
div.content { |
|
122
|
padding: 2ex 1ex 0ex 2ex; |
|
123
|
} |
|
124
|
|
|
125
|
/* Some pages have section dividers */ |
|
126
|
div.section { |
|
127
|
margin-bottom: 0px; |
|
128
|
margin-top: 1em; |
|
129
|
padding: 1px 1px 1px 1px; |
|
130
|
font-size: 1.2em; |
|
131
|
font-weight: bold; |
|
132
|
border-style:solid; |
|
133
|
border-color:#999; |
|
134
|
border-width:1px 0px; |
|
135
|
background-color: #eee; |
|
136
|
color: #333; |
|
137
|
white-space: nowrap; |
|
138
|
} |
|
139
|
|
|
140
|
/* The "Date" that occurs on the left hand side of timelines */ |
|
141
|
div.divider { |
|
142
|
background: #eee; |
|
143
|
border: 2px #999 solid; |
|
144
|
font-size: 1em; font-weight: normal; |
|
145
|
padding: .25em; |
|
146
|
margin: .2em 0 .2em 0; |
|
147
|
float: left; |
|
148
|
clear: left; |
|
149
|
color: #333; |
|
150
|
white-space: nowrap; |
|
151
|
} |
|
152
|
|
|
153
|
/* The footer at the very bottom of the page */ |
|
154
|
footer { |
|
155
|
font-size: 0.8em; |
|
156
|
margin-top: 12px; |
|
157
|
padding: 5px 10px 5px 10px; |
|
158
|
text-align: right; |
|
159
|
background-color: #eee; |
|
160
|
color: #555; |
|
161
|
} |
|
162
|
|
|
163
|
/* <verbatim> blocks */ |
|
164
|
pre.verbatim { |
|
165
|
background-color: #f5f5f5; |
|
166
|
padding: 0.5em; |
|
167
|
white-space: pre-wrap; |
|
168
|
} |
|
169
|
|
|
170
|
/* The label/value pairs on (for example) the ci page */ |
|
171
|
table.label-value th { |
|
172
|
vertical-align: top; |
|
173
|
text-align: right; |
|
174
|
padding: 0.2ex 2ex; |
|
175
|
} |
|
176
|
|