blob: 6e356f733abe9bf24a8b596c0202d7f618352f10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
.content {
padding-top: 65px;
padding-bottom: 100px;
}
.footer{
position: fixed;
bottom: 0;
right: 0;
left: 0;
color: white;
font-size:small;
background-color: #292c2f;
box-sizing: border-box;
width: 100%;
font: bold 12px;
}
html, body{
margin:0;
padding:0;
height:100%;
}
#container{
min-height: 100%;
position: relative;
}
#header{
}
#body{
padding: 10px;
padding-bottom: 60px:
}
|