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