-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsticky-footer.css
61 lines (52 loc) · 888 Bytes
/
sticky-footer.css
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
html, body {
height: 100%;
}
body {
height: 100%;
margin: 0;
padding: 0;
font: normal 12px/18px Georgia, Times, serif;
}
#layout {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -150px;
position: relative;
z-index: 10;
}
#body {
width: 100%;
height: 100%;
background-color: lightgrey;
overflow: hidden;
}
#body:after {
width: 100%;
height: 150px;
content: "";
display: block;
z-index: -1;
}
#footer {
height: 150px;
border: 1px solid black;
box-sizing: border-box;
/* padding-top: 366px;*/
background-color: grey;
position: relative;
z-index: 10;
}
h1 {
margin: 0 2rem;
padding: 0;
font: bold 150% Helvetica, Arial, sans-serif;
text-transform: capitalize;
}
h1:first-child {
margin-top: 1.5rem;
}
p {
margin: 1.5rem 2rem 3rem;
padding: 0;
}