|
1
|
/* General settings for the entire page */ |
|
2
|
body { |
|
3
|
margin: 0ex 1ex; |
|
4
|
padding: 0px; |
|
5
|
background-color: white; |
|
6
|
font-family: sans-serif; |
|
7
|
-moz-text-size-adjust: none; |
|
8
|
-webkit-text-size-adjust: none; |
|
9
|
-mx-text-size-adjust: none; |
|
10
|
} |
|
11
|
|
|
12
|
/* The project logo in the upper left-hand corner of each page */ |
|
13
|
div.logo { |
|
14
|
display: table-cell; |
|
15
|
text-align: center; |
|
16
|
vertical-align: bottom; |
|
17
|
font-weight: bold; |
|
18
|
color: #558195; |
|
19
|
min-width: 50px; |
|
20
|
white-space: nowrap; |
|
21
|
} |
|
22
|
|
|
23
|
/* The page title centered at the top of each page */ |
|
24
|
div.title { |
|
25
|
display: table-cell; |
|
26
|
font-size: 2em; |
|
27
|
font-weight: bold; |
|
28
|
text-align: center; |
|
29
|
padding: 0 0 0 1em; |
|
30
|
color: #558195; |
|
31
|
vertical-align: bottom; |
|
32
|
width: 100%; |
|
33
|
} |
|
34
|
|
|
35
|
/* The login status message in the top right-hand corner */ |
|
36
|
div.status { |
|
37
|
display: table-cell; |
|
38
|
text-align: right; |
|
39
|
vertical-align: bottom; |
|
40
|
color: #558195; |
|
41
|
font-size: 0.8em; |
|
42
|
font-weight: bold; |
|
43
|
white-space: nowrap; |
|
44
|
} |
|
45
|
|
|
46
|
/* The header across the top of the page */ |
|
47
|
header { |
|
48
|
display: table; |
|
49
|
width: 100%; |
|
50
|
} |
|
51
|
|
|
52
|
/* The main menu bar that appears at the top of the page beneath |
|
53
|
** the header */ |
|
54
|
nav.mainmenu { |
|
55
|
padding: 5px; |
|
56
|
font-size: 0.9em; |
|
57
|
font-weight: bold; |
|
58
|
text-align: center; |
|
59
|
letter-spacing: 1px; |
|
60
|
background-color: #558195; |
|
61
|
border-top-left-radius: 8px; |
|
62
|
border-top-right-radius: 8px; |
|
63
|
color: white; |
|
64
|
} |
|
65
|
|
|
66
|
/* The submenu bar that *sometimes* appears below the main menu */ |
|
67
|
div.submenu, div.sectionmenu { |
|
68
|
padding: 3px 10px 3px 0px; |
|
69
|
font-size: 0.9em; |
|
70
|
text-align: center; |
|
71
|
background-color: #456878; |
|
72
|
color: white; |
|
73
|
} |
|
74
|
nav.mainmenu a, nav.mainmenu a:visited, div.submenu a, div.submenu a:visited, |
|
75
|
div.sectionmenu>a.button:link, div.sectionmenu>a.button:visited, |
|
76
|
div.submenu label { |
|
77
|
padding: 3px 10px 3px 10px; |
|
78
|
color: white; |
|
79
|
text-decoration: none; |
|
80
|
} |
|
81
|
nav.mainmenu a:hover, div.submenu a:hover, div.sectionmenu>a.button:hover, |
|
82
|
div.submenu label:hover { |
|
83
|
color: #558195; |
|
84
|
background-color: white; |
|
85
|
} |
|
86
|
|
|
87
|
/* All page content from the bottom of the menu or submenu down to |
|
88
|
** the footer */ |
|
89
|
div.content { |
|
90
|
padding: 0ex 1ex 1ex 1ex; |
|
91
|
border: solid #aaa; |
|
92
|
border-width: 1px; |
|
93
|
} |
|
94
|
|
|
95
|
/* Some pages have section dividers */ |
|
96
|
div.section { |
|
97
|
margin-bottom: 0px; |
|
98
|
margin-top: 1em; |
|
99
|
padding: 1px 1px 1px 1px; |
|
100
|
font-size: 1.2em; |
|
101
|
font-weight: bold; |
|
102
|
background-color: #558195; |
|
103
|
color: white; |
|
104
|
white-space: nowrap; |
|
105
|
} |
|
106
|
|
|
107
|
/* The "Date" that occurs on the left hand side of timelines */ |
|
108
|
div.divider { |
|
109
|
background: #a1c4d4; |
|
110
|
border: 2px #558195 solid; |
|
111
|
font-size: 1em; font-weight: normal; |
|
112
|
padding: .25em; |
|
113
|
margin: .2em 0 .2em 0; |
|
114
|
float: left; |
|
115
|
clear: left; |
|
116
|
white-space: nowrap; |
|
117
|
} |
|
118
|
|
|
119
|
/* The footer at the very bottom of the page */ |
|
120
|
footer { |
|
121
|
clear: both; |
|
122
|
font-size: 0.8em; |
|
123
|
padding: 5px 10px 5px 10px; |
|
124
|
text-align: right; |
|
125
|
background-color: #558195; |
|
126
|
border-bottom-left-radius: 8px; |
|
127
|
border-bottom-right-radius: 8px; |
|
128
|
color: white; |
|
129
|
} |
|
130
|
|
|
131
|
/* Hyperlink colors in the footer */ |
|
132
|
footer a { color: white; } |
|
133
|
footer a:link { color: white; } |
|
134
|
footer a:visited { color: white; } |
|
135
|
footer a:hover { background-color: white; color: #558195; } |
|
136
|
|
|
137
|
/* verbatim blocks */ |
|
138
|
pre.verbatim { |
|
139
|
background-color: #f5f5f5; |
|
140
|
padding: 0.5em; |
|
141
|
white-space: pre-wrap; |
|
142
|
} |
|
143
|
|
|
144
|
/* The label/value pairs on (for example) the ci page */ |
|
145
|
table.label-value th { |
|
146
|
vertical-align: top; |
|
147
|
text-align: right; |
|
148
|
padding: 0.2ex 2ex; |
|
149
|
} |
|
150
|
|