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