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

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

Progress on layout.

File size: 1.0 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 background-color:#BA0000;
45 padding-left:5px;
46 padding-right:5px;
47 text-align:center;
48 font-size:14px;
49 color:white;
50}
51
52#info{
53 width:100%-10px;
54 display:none;
55 padding:5px;
56}
57
58#filters{
59 width:100%-10px;
60 display:none;
61 padding:5px;
62}
63
64h1{
65 color:#C20000;
66 //text-align:right;
67 margin-right:15px;
68 border-bottom:1px solid #C20000;
69}
70
71A:link{
72 color:#000;
73}
74
75A:visited{
76 color:#E3E3E3;
77}
78
79A:active{
80 color:#E3E3E3;
81}
82
83A:hover{
84 color:#B8B8B8;
85}
Note: See TracBrowser for help on using the repository browser.