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

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

Website layout updated. Little AJAX test thing, ignore that.

File size: 1.1 KB
Line 
1body,html{
2 height:100%;
3 margin:0;
4 padding:0;
5 font-family:Arial,Helvetica,sans-serif;
6 font-size:12px;
7 background-color:#999;
8}
9
10#wrapper{
11 width:100%;
12 height:100%;
13 margin:0 auto -20px;
14 word-wrap: break-word;
15 border:1px;
16 border-color:black;
17}
18
19#contentcontainer{
20 float:left;
21 background-image:url('/static/img/bg.jpg');
22 background-repeat: no-repeat;
23 background-color:#000;
24 width:450px;
25 height:100%;
26}
27
28#heatmap{
29 height:100%;
30}
31
32#heatmapwrapper{
33 height:100%;
34 margin-left:450px;
35}
36
37#header{
38 width:400px;
39 height:100px;
40 background-image:url('/static/img/header.jpg');
41 padding-top:21px;
42 padding-left:50px;
43}
44
45#content{
46 //background-color:#666;
47 width:100%;
48 margin-top:20px;
49 margin:10px;
50}
51
52#footer{
53 background-color:#BABABA;
54 height:17px;
55 width:450px;
56 margin:0 auto;
57 clear:both;
58 font-size:12px;
59 color:#666;
60 text-align:center;
61 padding-top:3px;
62 position:absolute;
63 bottom:0;
64}
65
66h1{
67 color:#C20000;
68 margin-bottom:-5px;
69 //text-align:right;
70 margin-right:15px;
71 border-bottom:1px solid #C20000;
72}
73
74A:link{
75 color:#666;
76}
77
78A:visited{
79 color:#666;
80}
81
82A:active{
83 color:#666;
84}
85
86A:hover{
87 color:#444;
88}
Note: See TracBrowser for help on using the repository browser.