-
Notifications
You must be signed in to change notification settings - Fork 7
/
slickmap.css
252 lines (234 loc) · 5.7 KB
/
slickmap.css
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
/* ------------------------------------------------------------
Reset Styles (from meyerweb.com)
------------------------------------------------------------ */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-weight: inherit;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: baseline;
}
/* ------------------------------------------------------------
NUMBER OF COLUMNS: Adjust #primaryNav li to set the number
of columns required in your site map. The default is
4 columns (25%). 5 columns would be 20%, 6 columns would
be 16.6%, etc.
------------------------------------------------------------ */
#primaryNav li {
width:25%;
}
#primaryNav li ul li {
width:100% !important;
}
#primaryNav.col1 li { width:99.9%; }
#primaryNav.col2 li { width:50.0%; }
#primaryNav.col3 li { width:33.3%; }
#primaryNav.col4 li { width:25.0%; }
#primaryNav.col5 li { width:20.0%; }
#primaryNav.col6 li { width:16.6%; }
#primaryNav.col7 li { width:14.2%; }
#primaryNav.col8 li { width:12.5%; }
#primaryNav.col9 li { width:11.1%; }
#primaryNav.col10 li { width:10.0%; }
/* ------------------------------------------------------------
General Styles
------------------------------------------------------------ */
body {
background: white;
color: black;
padding: 40px;
font-family: Gotham, Helvetica, Arial, sans-serif;
font-size: 12px;
line-height: 1;
}
.sitemap {
margin: 0 0 40px 0;
float: left;
width: 100%;
}
h1 {
font-weight: bold;
text-transform: uppercase;
font-size: 20px;
margin: 0 0 5px 0;
}
h2 {
font-family: "Lucida Grande", Verdana, sans-serif;
font-size: 10px;
color: #777777;
margin: 0 0 20px 0;
}
a {
text-decoration: none;
}
ol, ul {
list-style: none;
}
/* ------------------------------------------------------------
Site Map Styles
------------------------------------------------------------ */
/* -------- Top Level --------- */
#primaryNav {
margin: 0;
float: left;
width: 100%;
}
#primaryNav #home {
display: block;
float: none;
background: #ffffff url('images/L1-left.png') center bottom no-repeat;
position: relative;
z-index: 2;
padding: 0 0 30px 0;
}
#primaryNav li {
float: left;
background: url('images/L1-center.png') center top no-repeat;
padding: 30px 0;
margin-top: -30px;
}
#primaryNav li a {
margin: 0 20px 0 0;
padding: 10px 0;
display: block;
font-size: 14px;
font-weight: bold;
text-align: center;
color: black;
background: #c3eafb url('images/white-highlight.png') top left repeat-x;
border: 2px solid #b5d9ea;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-webkit-box-shadow: rgba(0,0,0,0.5) 2px 2px 2px;
-moz-box-shadow: rgba(0,0,0,0.5) 2px 2px 2px; /* FF 3.5+ */
}
#primaryNav li a:hover {
background-color: #e2f4fd;
border-color: #97bdcf;
}
#primaryNav li:last-child {
background: url('images/L1-right.png') center top no-repeat;
}
a:link:before,
a:visited:before {
content: " "attr(href)" ";
display: block;
text-transform: uppercase;
font-size: 10px;
margin-bottom: 5px;
word-wrap: break-word;
}
#primaryNav li a:link:before,
#primaryNav li a:visited:before {
color: #78a9c0;
}
/* -------- Second Level --------- */
#primaryNav li li {
width: 100%;
clear: left;
margin-top: 0;
padding: 10px 0 0 0;
background: url('images/vertical-line.png') center bottom repeat-y;
}
#primaryNav li li a {
background-color: #cee3ac;
border-color: #b8da83;
}
#primaryNav li li a:hover {
border-color: #94b75f;
background-color: #e7f1d7;
}
#primaryNav li li:first-child {
padding-top: 30px;
}
#primaryNav li li:last-child {
background: url('images/vertical-line.png') center bottom repeat-y;
}
#primaryNav li li a:link:before,
#primaryNav li li a:visited:before {
color: #8faf5c;
}
/* -------- Third Level --------- */
#primaryNav li li ul {
margin: 10px 0 0 0;
width: 100%;
float: right;
padding: 9px 0 10px 0;
background: #ffffff url('images/L3-ul-top.png') center top no-repeat;
}
#primaryNav li li li {
background: url('images/L3-center.png') left center no-repeat;
padding: 5px 0;
}
#primaryNav li li li a {
background-color: #fff7aa;
border-color: #e3ca4b;
font-size: 12px;
padding: 5px 0;
width: 80%;
float: right;
}
#primaryNav li li li a:hover {
background-color: #fffce5;
border-color: #d1b62c;
}
#primaryNav li li li:first-child {
padding: 15px 0 5px 0;
background: url('images/L3-li-top.png') left center no-repeat;
}
#primaryNav li li li:last-child {
background: url('images/L3-bottom.png') left center no-repeat;
}
#primaryNav li li li a:link:before,
#primaryNav li li li a:visited:before {
color: #ccae14;
font-size: 9px;
}
/* ------------------------------------------------------------
Utility Navigation
------------------------------------------------------------ */
#utilityNav {
float: right;
max-width: 50%;
margin-right: 10px;
}
#utilityNav li {
float: left;
margin-bottom: 10px;
}
#utilityNav li a {
margin: 0 10px 0 0;
padding: 5px 10px;
display: block;
border: 2px solid #e3ca4b;
font-size: 12px;
font-weight: bold;
text-align: center;
color: black;
background: #fff7aa url('images/white-highlight.png') top left repeat-x;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-webkit-box-shadow: rgba(0,0,0,0.5) 2px 2px 2px;
-moz-box-shadow: rgba(0,0,0,0.5) 2px 2px 2px; /* FF 3.5+ */
}
#utilityNav li a:hover {
background-color: #fffce5;
border-color: #d1b62c;
}
#utilityNav li a:link:before,
#utilityNav li a:visited:before {
color: #ccae14;
font-size: 9px;
margin-bottom: 3px;
}