Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
 
2
body {
3
  margin:0;
4
  border:0;
5
  padding:0;
6
  height:100%;
7
  max-height:100%;
8
  background:#eee;
9
  overflow: hidden;
10
}
11
 
12
#header {
13
  position:absolute;
14
  top:0;
15
  left:0;
16
  width:100%;
17
  height:86px;
18
  overflow:auto;
19
  background:#ccffff;
20
  color:#090;
21
  border-bottom: 4px solid #eee;
22
}
23
#header h1 {
24
  color: #090;
25
  text-align: left;
26
  font-size: 150%;
27
}
28
 
29
#footer {
30
  position:absolute;
31
  bottom:0;
32
  left:0;
33
  width:100%;
34
  height:38px;
35
  overflow:auto;
36
  text-align:right;
37
  background:#cfc;
38
  border-top: 2px solid #090;
39
}
40
 
41
#contents {
42
  position:fixed;
43
  top:90px;
44
  left:0;
45
  bottom:40px;
46
  right:0;
47
  overflow:auto;
48
  background:#fff;
49
  padding: 1.5em;
50
}
51
 
52
/* for internet explorer */
53
* html body {
54
  padding:90px 0 50px 0;
55
}
56
* html #contents {
57
  height:100%;
58
  width:100%;
59
}
60