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