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

Last change on this file since 9250 was 9249, checked in by dennisw, 14 years ago

Working on a date filter using 'JQuery UI's datepicker.

File size: 2.2 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}
10
11#heatmap{
12 position:absolute;
13 height:100%;
14 width:100%;
15 top:0px;
16 bottom:0px;
17 left:0px;
18 right:0px;
19}
20
21#container{
22 position:absolute;
23 left:50%;
24 margin-left:-400px;
25 top:-2px;
26 width:800px;
27 background-color:#FFF;
28 border:2px solid #BA0000;
29 z-index:1;
30}
31
32#header{
33 width:100%-10px;
34
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
93h1{
94 color:#C20000;
95}
96
97A:link{
98 color:#FFF;
99 padding-left:8px;
100}
101
102A:visited{
103 color:#FFF;
104}
105
106A:active{
107 color:#FFF;
108}
109
110A:hover{
111 color:#DDD;
112}
113
114
115/* Colorpicker */
116
117div.color_picker {
118 height: 16px;
119 width: 16px;
120 padding: 0 !important;
121 border: 1px solid #ccc;
122 background: url(img/arrow.gif) no-repeat top right;
123 cursor: pointer;
124 line-height: 16px;
125 z-index:2;
126 float:left;
127 margin-top:-3px;
128 margin-right:3px;
129}
130
131div#color_selector {
132 width: 110px;
133 position: absolute;
134 border: 1px solid #BA0000;
135 background-color: #EFEFEF;
136 padding: 2px;
137 z-index:2;
138}
139 div#color_custom {width: 100%; float:left }
140 div#color_custom label {font-size: 95%; color: #2F2F2F; margin: 5px 2px; width: 25%}
141 div#color_custom input {margin: 5px 2px; padding: 0; font-size: 95%; border: 1px solid #000; width: 65%; }
142
143div.color_swatch {
144 height: 12px;
145 width: 12px;
146 border: 1px solid #000;
147 margin: 2px;
148 float: left;
149 cursor: pointer;
150 line-height: 12px;
151 z-index:2;
152}
153
Note: See TracBrowser for help on using the repository browser.