|
Last change
on this file since 9312 was 9302, checked in by dennisw, 15 years ago |
|
Added/changed/clarified some comments in code.
|
|
File size:
3.3 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:100px;
|
|---|
| 105 | width:200px;
|
|---|
| 106 | bottom:100px;
|
|---|
| 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:5px;
|
|---|
| 120 | padding-right:5px;
|
|---|
| 121 | font-size:18px;
|
|---|
| 122 | color:white;
|
|---|
| 123 | }
|
|---|
| 124 |
|
|---|
| 125 | #layer_switcher_toggle{
|
|---|
| 126 | position:absolute;
|
|---|
| 127 | right:-2px;
|
|---|
| 128 | top:101px;
|
|---|
| 129 | width:17px;
|
|---|
| 130 | height:17px;
|
|---|
| 131 | background-color:#FFF;
|
|---|
| 132 | border:2px solid #BA0000;
|
|---|
| 133 | z-index:2;
|
|---|
| 134 | text-align:center;
|
|---|
| 135 | font-size:15px;
|
|---|
| 136 | overflow: auto;
|
|---|
| 137 | }
|
|---|
| 138 |
|
|---|
| 139 | #layer_switcher_colour{
|
|---|
| 140 | margin-top:4px;
|
|---|
| 141 | margin-left:4px;
|
|---|
| 142 | padding:0;
|
|---|
| 143 | width:10px;
|
|---|
| 144 | height:10px;
|
|---|
| 145 | border:1px solid #000;
|
|---|
| 146 | float:left;
|
|---|
| 147 | }
|
|---|
| 148 |
|
|---|
| 149 | #sig_slider{
|
|---|
| 150 | position:absolute;
|
|---|
| 151 | left:50%;
|
|---|
| 152 | margin-left:-150px;
|
|---|
| 153 | bottom:25px;
|
|---|
| 154 | height:8px;
|
|---|
| 155 | width:300px;
|
|---|
| 156 | z-index:1;
|
|---|
| 157 | font-size:10px;
|
|---|
| 158 | text-align:center;
|
|---|
| 159 | }
|
|---|
| 160 |
|
|---|
| 161 | #slider .ui-slider-handle{
|
|---|
| 162 | border-color: #cc0204;
|
|---|
| 163 | height:14px;
|
|---|
| 164 | width:10px;
|
|---|
| 165 | }
|
|---|
| 166 |
|
|---|
| 167 | /**
|
|---|
| 168 | * Text settings
|
|---|
| 169 | */
|
|---|
| 170 |
|
|---|
| 171 | h1{
|
|---|
| 172 | color:#C20000;
|
|---|
| 173 | }
|
|---|
| 174 |
|
|---|
| 175 | A:link{
|
|---|
| 176 | color:#FFF;
|
|---|
| 177 | padding-left:8px;
|
|---|
| 178 | }
|
|---|
| 179 |
|
|---|
| 180 | A:visited{
|
|---|
| 181 | color:#FFF;
|
|---|
| 182 | }
|
|---|
| 183 |
|
|---|
| 184 | A:active{
|
|---|
| 185 | color:#FFF;
|
|---|
| 186 | }
|
|---|
| 187 |
|
|---|
| 188 | A:hover{
|
|---|
| 189 | color:#DDD;
|
|---|
| 190 | }
|
|---|
| 191 |
|
|---|
| 192 | .olControlPermalink a{
|
|---|
| 193 | color:#000;
|
|---|
| 194 | }
|
|---|
| 195 |
|
|---|
| 196 | .olControlPermalink a:hover{
|
|---|
| 197 | color:#666;
|
|---|
| 198 | }
|
|---|
| 199 |
|
|---|
| 200 | /**
|
|---|
| 201 | * Colorpicker
|
|---|
| 202 | */
|
|---|
| 203 |
|
|---|
| 204 | div.color_picker {
|
|---|
| 205 | height: 16px;
|
|---|
| 206 | width: 16px;
|
|---|
| 207 | padding: 0 !important;
|
|---|
| 208 | border: 1px solid #ccc;
|
|---|
| 209 | background: url(img/arrow.gif) no-repeat top right;
|
|---|
| 210 | cursor: pointer;
|
|---|
| 211 | line-height: 16px;
|
|---|
| 212 | z-index:2;
|
|---|
| 213 | float:left;
|
|---|
| 214 | margin-top:-3px;
|
|---|
| 215 | margin-right:3px;
|
|---|
| 216 | }
|
|---|
| 217 |
|
|---|
| 218 | div#color_selector {
|
|---|
| 219 | width: 110px;
|
|---|
| 220 | position: absolute;
|
|---|
| 221 | border: 1px solid #BA0000;
|
|---|
| 222 | background-color: #EFEFEF;
|
|---|
| 223 | padding: 2px;
|
|---|
| 224 | z-index:2;
|
|---|
| 225 | }
|
|---|
| 226 | div#color_custom {width: 100%; float:left }
|
|---|
| 227 | div#color_custom label {font-size: 95%; color: #2F2F2F; margin: 5px 2px; width: 25%}
|
|---|
| 228 | div#color_custom input {margin: 5px 2px; padding: 0; font-size: 95%; border: 1px solid #000; width: 65%; }
|
|---|
| 229 |
|
|---|
| 230 | div.color_swatch {
|
|---|
| 231 | height: 12px;
|
|---|
| 232 | width: 12px;
|
|---|
| 233 | border: 1px solid #000;
|
|---|
| 234 | margin: 2px;
|
|---|
| 235 | float: left;
|
|---|
| 236 | cursor: pointer;
|
|---|
| 237 | line-height: 12px;
|
|---|
| 238 | z-index:2;
|
|---|
| 239 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.