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

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

Playing with interface.

File size: 1.1 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#header{
22 position:absolute;
23 left:160px;
24 right:160px;
25 top:-2px;
26 min-width:600px;
27 background-color:#FFF;
28 border:2px solid #CC0000;
29 z-index:1;
30}
31
32#header_title{
33 width:100%;
34 height:26px;
35 top:0px;
36 background-color:#CC0000;
37 padding-left:5px;
38 padding-right:5px;
39}
40
41#header_content{
42 width:100%;
43 padding:5px;
44}
45
46#filters{
47 position:absolute;
48 left:-2px;
49 top:100px;
50 width:150px;
51 background-color:#FFF;
52 border:2px solid #CC0000;
53 z-index:1;
54}
55
56#filters_title{
57 width:140px;
58 height:26px;
59 top:0px;
60 background-color:#CC0000;
61 padding-left:5px;
62 padding-right:5px;
63}
64
65#filters_content{
66 width:140px;
67 padding:5px;
68}
69
70h1{
71 color:#C20000;
72 //text-align:right;
73 margin-right:15px;
74 border-bottom:1px solid #C20000;
75}
76
77A:link{
78 color:#000;
79}
80
81A:visited{
82 color:#E3E3E3;
83}
84
85A:active{
86 color:#E3E3E3;
87}
88
89A:hover{
90 color:#B8B8B8;
91}
Note: See TracBrowser for help on using the repository browser.