Last change
on this file since 9649 was 9583, checked in by rick, 13 years ago |
Fix style-sheet inheritance, allowing to override and fix location of Permament and Coordinates to the top.
|
File size:
4.1 KB
|
Line | |
---|
1 | /**
|
---|
2 | * Body
|
---|
3 | */
|
---|
4 |
|
---|
5 | body,html{
|
---|
6 | height:100%;
|
---|
7 | width:100%;
|
---|
8 | margin:0;
|
---|
9 | padding:0;
|
---|
10 | font-family:Arial,Helvetica,sans-serif;
|
---|
11 | font-size:12px;
|
---|
12 | background-color:#999;
|
---|
13 | overflow:hidden;
|
---|
14 | }
|
---|
15 |
|
---|
16 | /**
|
---|
17 | * Divs
|
---|
18 | */
|
---|
19 |
|
---|
20 | #heatmap{
|
---|
21 | position:absolute;
|
---|
22 | height:100%;
|
---|
23 | width:100%;
|
---|
24 | top:0px;
|
---|
25 | bottom:0px;
|
---|
26 | left:0px;
|
---|
27 | right:0px;
|
---|
28 | }
|
---|
29 |
|
---|
30 | #container{
|
---|
31 | position:absolute;
|
---|
32 | left:50%;
|
---|
33 | margin-left:-400px;
|
---|
34 | top:-2px;
|
---|
35 | width:800px;
|
---|
36 | background-color:#FFF;
|
---|
37 | border:2px solid #BA0000;
|
---|
38 | z-index:1;
|
---|
39 | opacity: 0.85;
|
---|
40 | }
|
---|
41 |
|
---|
42 | #header{
|
---|
43 | width:100%-10px;
|
---|
44 | top:0px;
|
---|
45 | background-color:#BA0000;
|
---|
46 | padding-left:5px;
|
---|
47 | padding-right:5px;
|
---|
48 | text-align:center;
|
---|
49 | font-size:18px;
|
---|
50 | color:white;
|
---|
51 | }
|
---|
52 |
|
---|
53 | #menu{
|
---|
54 | width:100%-10px;
|
---|
55 | background-color:#BA0000;
|
---|
56 | padding-left:5px;
|
---|
57 | padding-right:5px;
|
---|
58 | text-align:center;
|
---|
59 | font-size:14px;
|
---|
60 | color:white;
|
---|
61 | }
|
---|
62 |
|
---|
63 | #info{
|
---|
64 | width:100%-10px;
|
---|
65 | display:none;
|
---|
66 | padding:5px;
|
---|
67 | }
|
---|
68 |
|
---|
69 | #filter{
|
---|
70 | width:100%-10px;
|
---|
71 | display:none;
|
---|
72 | padding:5px;
|
---|
73 | }
|
---|
74 |
|
---|
75 | #filter_text{
|
---|
76 | height:100%;
|
---|
77 | width:570px;
|
---|
78 | overflow:hidden;
|
---|
79 | float:left;
|
---|
80 | }
|
---|
81 |
|
---|
82 | #filter_list{
|
---|
83 | padding:5px;
|
---|
84 | width:200px;
|
---|
85 | border-left: 1px solid #BA0000;
|
---|
86 | float:right;
|
---|
87 | margin-bottom:5px;
|
---|
88 | }
|
---|
89 |
|
---|
90 | #node_list{
|
---|
91 | position:absolute;
|
---|
92 | left:-2px;
|
---|
93 | bottom:-2px;
|
---|
94 | width:200px;
|
---|
95 | background-color:#FFF;
|
---|
96 | border:2px solid #BA0000;
|
---|
97 | z-index:1;
|
---|
98 | padding:5px;
|
---|
99 | font-size:10px;
|
---|
100 | }
|
---|
101 |
|
---|
102 | #layer_switcher{
|
---|
103 | position:absolute;
|
---|
104 | right:-2px;
|
---|
105 | top:50px;
|
---|
106 | width:200px;
|
---|
107 | max-height:80%;
|
---|
108 | background-color:#FFF;
|
---|
109 | border:2px solid #BA0000;
|
---|
110 | z-index:1;
|
---|
111 | padding:0;
|
---|
112 | font-size:10px;
|
---|
113 | overflow:auto;
|
---|
114 | }
|
---|
115 |
|
---|
116 | #layer_switcher_cat{
|
---|
117 | width:100%-2px;
|
---|
118 | top:0px;
|
---|
119 | background-color:#BA0000;
|
---|
120 | padding-left:0px;
|
---|
121 | padding-right:5px;
|
---|
122 | font-size:18px;
|
---|
123 | color:white;
|
---|
124 | }
|
---|
125 |
|
---|
126 | #cat_container{
|
---|
127 |
|
---|
128 | }
|
---|
129 |
|
---|
130 | #layer_switcher_toggle{
|
---|
131 | position:absolute;
|
---|
132 | right:-2px;
|
---|
133 | top:51px;
|
---|
134 | width:17px;
|
---|
135 | height:17px;
|
---|
136 | background-color:#FFF;
|
---|
137 | border:2px solid #BA0000;
|
---|
138 | z-index:2;
|
---|
139 | text-align:center;
|
---|
140 | font-size:15px;
|
---|
141 | overflow: auto;
|
---|
142 | }
|
---|
143 |
|
---|
144 | #layer_switcher_colour{
|
---|
145 | margin-top:4px;
|
---|
146 | margin-left:4px;
|
---|
147 | padding:0;
|
---|
148 | width:10px;
|
---|
149 | height:10px;
|
---|
150 | border:1px solid #000;
|
---|
151 | float:left;
|
---|
152 | }
|
---|
153 |
|
---|
154 | #cat_hide{
|
---|
155 | margin-top:4px;
|
---|
156 | margin-left:4px;
|
---|
157 | padding-left:-4px;
|
---|
158 | padding-top:-10px;
|
---|
159 | width:10px;
|
---|
160 | height:10px;
|
---|
161 | border:1px solid #000;
|
---|
162 | float:left;
|
---|
163 | background:url(img/up.png) no-repeat top left;
|
---|
164 | color:#000;
|
---|
165 | font-size:13px;
|
---|
166 | text-align:center;
|
---|
167 | }
|
---|
168 |
|
---|
169 | #hide_parent{
|
---|
170 | position:absolute;
|
---|
171 | bottom:10px;
|
---|
172 | left:50%;
|
---|
173 | margin-left:-5px;
|
---|
174 | width:10px;
|
---|
175 | height:10px;
|
---|
176 | border:1px solid #000;
|
---|
177 | bottom:2px;
|
---|
178 | background:url(img/up.png) no-repeat top left;
|
---|
179 | color:#000;
|
---|
180 | font-size:13px;
|
---|
181 | text-align:center;
|
---|
182 | }
|
---|
183 |
|
---|
184 |
|
---|
185 | #sig_slider{
|
---|
186 | position:absolute;
|
---|
187 | left:50%;
|
---|
188 | margin-left:-150px;
|
---|
189 | bottom:25px;
|
---|
190 | height:8px;
|
---|
191 | width:300px;
|
---|
192 | z-index:1;
|
---|
193 | font-size:10px;
|
---|
194 | text-align:center;
|
---|
195 | }
|
---|
196 |
|
---|
197 | #slider .ui-slider-handle{
|
---|
198 | border-color: #cc0204;
|
---|
199 | height:14px;
|
---|
200 | width:10px;
|
---|
201 | }
|
---|
202 |
|
---|
203 | /**
|
---|
204 | * Text settings
|
---|
205 | */
|
---|
206 | h1{
|
---|
207 | color:#C20000;
|
---|
208 | }
|
---|
209 |
|
---|
210 | A:link{
|
---|
211 | color:#FFF;
|
---|
212 | padding-left:8px;
|
---|
213 | }
|
---|
214 |
|
---|
215 | A:visited{
|
---|
216 | color:#FFF;
|
---|
217 | }
|
---|
218 |
|
---|
219 | A:active{
|
---|
220 | color:#FFF;
|
---|
221 | }
|
---|
222 |
|
---|
223 | A:hover{
|
---|
224 | color:#DDD;
|
---|
225 | }
|
---|
226 |
|
---|
227 | .olControlPermalink a{
|
---|
228 | color:#000;
|
---|
229 | }
|
---|
230 |
|
---|
231 | .olControlPermalink a:hover{
|
---|
232 | color:#666;
|
---|
233 | }
|
---|
234 |
|
---|
235 | /**
|
---|
236 | * Colorpicker
|
---|
237 | */
|
---|
238 |
|
---|
239 | div.color_picker {
|
---|
240 | height: 16px;
|
---|
241 | width: 16px;
|
---|
242 | padding: 0 !important;
|
---|
243 | border: 1px solid #ccc;
|
---|
244 | background: url(img/arrow.gif) no-repeat top right;
|
---|
245 | cursor: pointer;
|
---|
246 | line-height: 16px;
|
---|
247 | z-index:2;
|
---|
248 | float:left;
|
---|
249 | margin-top:-3px;
|
---|
250 | margin-right:3px;
|
---|
251 | }
|
---|
252 |
|
---|
253 | div#color_selector {
|
---|
254 | width: 110px;
|
---|
255 | position: absolute;
|
---|
256 | border: 1px solid #BA0000;
|
---|
257 | background-color: #EFEFEF;
|
---|
258 | padding: 2px;
|
---|
259 | z-index:2;
|
---|
260 | }
|
---|
261 | div#color_custom {width: 100%; float:left }
|
---|
262 | div#color_custom label {font-size: 95%; color: #2F2F2F; margin: 5px 2px; width: 25%}
|
---|
263 | div#color_custom input {margin: 5px 2px; padding: 0; font-size: 95%; border: 1px solid #000; width: 65%; }
|
---|
264 |
|
---|
265 | div.color_swatch {
|
---|
266 | height: 12px;
|
---|
267 | width: 12px;
|
---|
268 | border: 1px solid #000;
|
---|
269 | margin: 2px;
|
---|
270 | float: left;
|
---|
271 | cursor: pointer;
|
---|
272 | line-height: 12px;
|
---|
273 | z-index:2;
|
---|
274 | }
|
---|
275 |
|
---|
276 | div.olControlOverviewMapElement {
|
---|
277 | background-color: #BA0000;
|
---|
278 | }
|
---|
279 |
|
---|
280 | div.olControlMousePosition {
|
---|
281 | bottom: auto;
|
---|
282 | right: 50px;
|
---|
283 | top: 0px;
|
---|
284 |
|
---|
285 | }
|
---|
286 |
|
---|
287 | div.olControlPermalink {
|
---|
288 | bottom: auto;
|
---|
289 | top: 0px;
|
---|
290 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.