blob: 2ad35dc848d8c725217cc7601bab00622fd8deba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
|
/*
Navigation Style Sheet for the W3C Markup Validation Service.
Copyright 2000-2004 W3C (MIT, INRIA, Keio). All Rights Reserved.
See http://www.w3.org/Consortium/Legal/ipr-notice.html#Copyright
$Id: navbar.css,v 1.7 2004-05-09 15:56:49 link Exp $
*/
html {
/* min-width: 55em; */
}
#menu {
/* min-width: 63em; */
list-style-type: none;
padding: 0;
margin: 0;
height: 1.5em;
background-color: #eee;
border-bottom: solid 1px black;
}
#menu li {
display: inline;
padding: 0;
margin: 0;
}
#menu li a:link, #menu li a:visited {
text-decoration: none;
text-align: center;
float: left;
display: block;
width: 8em;
padding: 2px 0px;
margin: 0;
background-color: #eee;
color: #053188;
font-size: smaller;
font-variant: small-caps;
border-right: solid 1px #bbb;
border-bottom: solid 1px #ddd;
}
#menu li a#selected:link, #menu li a#selected:visited {
text-decoration: underline;
background-color: #fff;
color: #053188;
}
#menu li a:hover {
text-decoration: underline;
background-color: #fff;
color: #053188;
}
#menu li a:active {
background-color: #fff;
color: #053188;
border-right: solid 1px #ddd;
}
/* link bar - all pages*/
#misclinks {
float: right;
width: 8em;
text-decoration: none;
padding: 1ex;
background-color: #eee;
border-left: 1px solid black;
border-bottom: 1px solid black;
margin-top: -1px;
font-size: smaller;
}
#misclinks dt {
text-align: center;
background: #ddd;
color: #053188;
font-variant: small-caps;
}
#misclinks dd {
text-align: right;
margin: 0;
padding-bottom: 2ex;
}
#misclinks ul {margin: 0; padding: 0;}
#misclinks li {
list-style-type: none;
text-align: right;
}
#misclinks ul li a {
display: block;
}
#misclinks li a:link, #misclinks li a:visited, div.jumpbar li a:link, div.jumpbar li a:visited {
text-decoration: none;
display: block;
padding: 1px 0px;
margin: 0;
background-color: #eee;
color: #053188;
font-size: smaller;
}
#misclinks li a:hover {
text-decoration: underline;
background-color: #fff;
color: #053188;
}
#misclinks li a#selected:link, div.jumpbar li a#selected:visited {
text-decoration: underline;
}
/* Jump Bar - results page*/
.jumpbar {
float: right;
width: 8em;
margin-right: -.4em; /* FIXME - find the exact value - */
text-align: left;
text-decoration: none;
padding: 1ex;
background-color: #eee;
border-left: 1px solid black;
border-bottom: 1px solid black;
margin-top: -1.3em;
font-size: smaller;
}
div.jumpbar ul {
padding: 0;
margin: 0;
}
div.jumpbar li {
list-style-type: none;
}
div.jumpbar li a:link, div.jumpbar li a:visited {
text-decoration: none;
text-align: center;
display: block;
width: 8em;
padding: 2px 0px;
margin: 0;
background-color: #eee;
color: #053188;
font-size: smaller;
border-top: dotted 1px black;
}
div.jumpbar li a:hover {
text-decoration: underline;
}
div.jumpbar li a#selected:link, div.jumpbar li a#selected:visited {
text-decoration: underline;
background-color: #fff;
color: #053188;
border-right: solid 1px #ddd;
border-bottom: solid 1px #fff;
}
|