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