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

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

Added nodelist to layout again. Progress on filters (remains of useless code may still be there, will clean up later when filters work as planned).

File size: 1.4 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 height:30px;
35 top:0px;
36 background-color:#BA0000;
37 padding-left:5px;
38 padding-right:5px;
39 text-align:center;
40}
41
42#menu{
43 width:100%-10px;
44 height:20px;
45 background-color:#BA0000;
46 padding-left:5px;
47 padding-right:5px;
48 text-align:center;
49 font-size:14px;
50 color:white;
51}
52
53#info{
54 width:100%-10px;
55 display:none;
56 padding:5px;
57}
58
59#filter{
60 width:100%-10px;
61 display:none;
62 padding:5px;
63}
64
65#filter_text{
66 height:100%;
67 width:570px;
68 overflow:hidden;
69 float:left;
70}
71
72#filter_list{
73 padding:5px;
74 width:200px;
75 border-left: 1px solid #BA0000;
76 float:right;
77 margin-bottom:5px;
78}
79
80#node_list{
81 position:absolute;
82 left:50%;
83 margin-left:-150px;
84 bottom:-2px;
85 width:300px;
86 background-color:#FFF;
87 border:2px solid #BA0000;
88 z-index:1;
89 padding:5px;
90}
91
92h1{
93 color:#C20000;
94}
95
96A:link{
97 color:#FFF;
98 padding-left:8px;
99}
100
101A:visited{
102 color:#FFF;
103}
104
105A:active{
106 color:#FFF;
107}
108
109A:hover{
110 color:#DDD;
111}
Note: See TracBrowser for help on using the repository browser.