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

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

Added a slider that creates a layer with signal strength. (works with range, e.g. signal strength 50 - 100, figured that gives more control)

File size: 2.5 KB
RevLine 
[9175]1body,html{
[9210]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;
[9266]9 overflow:hidden;
[9175]10}
11
[9210]12#heatmap{
13 position:absolute;
14 height:100%;
15 width:100%;
16 top:0px;
17 bottom:0px;
18 left:0px;
19 right:0px;
[9175]20}
21
[9211]22#container{
[9210]23 position:absolute;
[9211]24 left:50%;
25 margin-left:-400px;
[9210]26 top:-2px;
[9211]27 width:800px;
[9210]28 background-color:#FFF;
[9211]29 border:2px solid #BA0000;
[9210]30 z-index:1;
[9175]31}
32
[9211]33#header{
34 width:100%-10px;
[9210]35 top:0px;
[9211]36 background-color:#BA0000;
[9210]37 padding-left:5px;
38 padding-right:5px;
[9211]39 text-align:center;
[9214]40 font-size:18px;
41 color:white;
[9175]42}
43
[9211]44#menu{
45 width:100%-10px;
46 background-color:#BA0000;
[9210]47 padding-left:5px;
48 padding-right:5px;
[9211]49 text-align:center;
50 font-size:14px;
51 color:white;
[9175]52}
53
[9211]54#info{
55 width:100%-10px;
56 display:none;
[9210]57 padding:5px;
[9175]58}
[9211]59
[9213]60#filter{
[9211]61 width:100%-10px;
[9237]62/* display:none; */
[9211]63 padding:5px;
64}
[9212]65
[9213]66#filter_text{
[9212]67 height:100%;
68 width:570px;
69 overflow:hidden;
70 float:left;
71}
72
[9213]73#filter_list{
[9212]74 padding:5px;
75 width:200px;
76 border-left: 1px solid #BA0000;
77 float:right;
78 margin-bottom:5px;
79}
[9213]80
81#node_list{
82 position:absolute;
[9214]83 left:-2px;
[9213]84 bottom:-2px;
[9214]85 width:200px;
[9213]86 background-color:#FFF;
87 border:2px solid #BA0000;
88 z-index:1;
89 padding:5px;
[9214]90 font-size:10px;
[9213]91}
[9266]92
93#sig_slider{
94 position:absolute;
95 left:50%;
96 margin-left:-150px;
97 bottom:30px;
98 height:8px;
99 width:300px;
100 z-index:1;
101 font-size:10px;
102 text-align:center;
103}
104
105#slider .ui-slider-handle{
106 border-color: #cc0204;
107 height:14px;
108 width:10px;
109}
[9175]110
111h1{
[9210]112 color:#C20000;
[9175]113}
114
115A:link{
[9212]116 color:#FFF;
[9213]117 padding-left:8px;
[9175]118}
119
120A:visited{
[9212]121 color:#FFF;
[9175]122}
123
124A:active{
[9212]125 color:#FFF;
[9175]126}
127
128A:hover{
[9212]129 color:#DDD;
[9175]130}
[9246]131
132
133/* Colorpicker */
134
135div.color_picker {
136 height: 16px;
137 width: 16px;
138 padding: 0 !important;
139 border: 1px solid #ccc;
140 background: url(img/arrow.gif) no-repeat top right;
141 cursor: pointer;
142 line-height: 16px;
143 z-index:2;
144 float:left;
145 margin-top:-3px;
146 margin-right:3px;
147}
148
149div#color_selector {
150 width: 110px;
151 position: absolute;
[9249]152 border: 1px solid #BA0000;
[9246]153 background-color: #EFEFEF;
154 padding: 2px;
155 z-index:2;
156}
157 div#color_custom {width: 100%; float:left }
158 div#color_custom label {font-size: 95%; color: #2F2F2F; margin: 5px 2px; width: 25%}
159 div#color_custom input {margin: 5px 2px; padding: 0; font-size: 95%; border: 1px solid #000; width: 65%; }
160
161div.color_swatch {
162 height: 12px;
163 width: 12px;
164 border: 1px solid #000;
165 margin: 2px;
166 float: left;
167 cursor: pointer;
168 line-height: 12px;
169 z-index:2;
170}
171
Note: See TracBrowser for help on using the repository browser.