blob: 4ff475e89f77e513ecce4c0347626d6dfd96eb79 (
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
|
/* Sticky footer styles
-------------------------------------------------- */
html {
position: relative;
min-height: 100%;
}
body {
/* Margin bottom by footer height */
margin-bottom: 80px;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
/* Set the fixed height of the footer here */
height: 40px;
}
input[type=checkbox]:checked ~ .label_hide_if_checked {
display:none;
}
input[type=checkbox]:not(:checked) ~ .label_hide_if_not_checked {
display:none;
}
|