source: src/django_gheat/website/static/style.css@ 9297

Last change on this file since 9297 was 9297, checked in by dennisw, 13 years ago

Fixed permalink visibility.
Fixed layer toggle by category.

File size: 3.3 KB
Line 
1body,html{
2 height:100%;
3 width:100%;
4 margin:0;
5 padding:0;
6 font-family:Arial,Helvetica,sans-serif;
7 font-size:12px;
8 background-color:#999;
9 overflow:hidden;
10}
11
12#heatmap{
13 position:absolute;
14 height:100%;
15 width:100%;
16 top:0px;
17 bottom:0px;
18 left:0px;
19 right:0px;
20}
21
22#container{
23 position:absolute;
24 left:50%;
25 margin-left:-400px;
26 top:-2px;
27 width:800px;
28 background-color:#FFF;
29 border:2px solid #BA0000;
30 z-index:1;
31}
32
33#header{
34 width:100%-10px;
35 top:0px;
36 background-color:#BA0000;
37 padding-left:5px;
38 padding-right:5px;
39 text-align:center;
40 font-size:18px;
41 color:white;
42}
43
44#menu{
45 width:100%-10px;
46 background-color:#BA0000;
47 padding-left:5px;
48 padding-right:5px;
49 text-align:center;
50 font-size:14px;
51 color:white;
52}
53
54#info{
55 width:100%-10px;
56 display:none;
57 padding:5px;
58}
59
60#filter{
61 width:100%-10px;
62/* display:none; */
63 padding:5px;
64}
65
66#filter_text{
67 height:100%;
68 width:570px;
69 overflow:hidden;
70 float:left;
71}
72
73#filter_list{
74 padding:5px;
75 width:200px;
76 border-left: 1px solid #BA0000;
77 float:right;
78 margin-bottom:5px;
79}
80
81#node_list{
82 position:absolute;
83 left:-2px;
84 bottom:-2px;
85 width:200px;
86 background-color:#FFF;
87 border:2px solid #BA0000;
88 z-index:1;
89 padding:5px;
90 font-size:10px;
91}
92
93#layer_switcher{
94 position:absolute;
95 right:-2px;
96 top:100px;
97 width:200px;
98 bottom:100px;
99 background-color:#FFF;
100 border:2px solid #BA0000;
101 z-index:1;
102 padding:0;
103 font-size:10px;
104 overflow:auto;
105}
106
107#layer_switcher_cat{
108 width:100%-2px;
109 top:0px;
110 background-color:#BA0000;
111 padding-left:5px;
112 padding-right:5px;
113 font-size:18px;
114 color:white;
115}
116
117#layer_switcher_toggle{
118 position:absolute;
119 right:-2px;
120 top:101px;
121 width:17px;
122 height:17px;
123 background-color:#FFF;
124 border:2px solid #BA0000;
125 z-index:2;
126 text-align:center;
127 font-size:15px;
128 overflow: auto;
129}
130
131#layer_switcher_colour{
132 margin-top:4px;
133 margin-left:4px;
134 padding:0;
135 width:10px;
136 height:10px;
137 border:1px solid #000;
138 float:left;
139}
140
141#sig_slider{
142 position:absolute;
143 left:50%;
144 margin-left:-150px;
145 bottom:25px;
146 height:8px;
147 width:300px;
148 z-index:1;
149 font-size:10px;
150 text-align:center;
151}
152
153#slider .ui-slider-handle{
154 border-color: #cc0204;
155 height:14px;
156 width:10px;
157}
158
159h1{
160 color:#C20000;
161}
162
163A:link{
164 color:#FFF;
165 padding-left:8px;
166}
167
168A:visited{
169 color:#FFF;
170}
171
172A:active{
173 color:#FFF;
174}
175
176A:hover{
177 color:#DDD;
178}
179
180.olControlPermalink a{
181 color:#000;
182}
183
184.olControlPermalink a:hover{
185 color:#666;
186}
187
188/* Colorpicker */
189
190div.color_picker {
191 height: 16px;
192 width: 16px;
193 padding: 0 !important;
194 border: 1px solid #ccc;
195 background: url(img/arrow.gif) no-repeat top right;
196 cursor: pointer;
197 line-height: 16px;
198 z-index:2;
199 float:left;
200 margin-top:-3px;
201 margin-right:3px;
202}
203
204div#color_selector {
205 width: 110px;
206 position: absolute;
207 border: 1px solid #BA0000;
208 background-color: #EFEFEF;
209 padding: 2px;
210 z-index:2;
211}
212 div#color_custom {width: 100%; float:left }
213 div#color_custom label {font-size: 95%; color: #2F2F2F; margin: 5px 2px; width: 25%}
214 div#color_custom input {margin: 5px 2px; padding: 0; font-size: 95%; border: 1px solid #000; width: 65%; }
215
216div.color_swatch {
217 height: 12px;
218 width: 12px;
219 border: 1px solid #000;
220 margin: 2px;
221 float: left;
222 cursor: pointer;
223 line-height: 12px;
224 z-index:2;
225}
Note: See TracBrowser for help on using the repository browser.