mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-06 23:24:57 +00:00
51 lines
820 B
CSS
51 lines
820 B
CSS
/* Sticky footer styles
|
|
-------------------------------------------------- */
|
|
html {
|
|
position: relative;
|
|
min-height: 100%;
|
|
}
|
|
body {
|
|
/* Margin bottom by footer height */
|
|
margin-bottom: 70px;
|
|
}
|
|
@media (max-width: 991px) {
|
|
body {
|
|
/* Margin bottom by footer height */
|
|
margin-bottom: 110px;
|
|
}
|
|
}
|
|
@media (max-width: 767px) {
|
|
body {
|
|
/* Margin bottom by footer height */
|
|
margin-bottom: 130px;
|
|
}
|
|
}
|
|
.footer {
|
|
font-size: 80%;
|
|
position: absolute;
|
|
bottom: 0;
|
|
width: 100%;
|
|
background-color: #f5f5f5;
|
|
}
|
|
@media (max-width: 991px) {
|
|
.footer {
|
|
height: 108px;
|
|
}
|
|
}
|
|
@media (max-width: 767px) {
|
|
body {
|
|
font-size: 0.875rem;
|
|
}
|
|
.footer {
|
|
height: 126px;
|
|
}
|
|
}
|
|
.footer .disclaimer {
|
|
display: inline-block;
|
|
padding: 7px 0px 7px 0px;
|
|
}
|
|
.footer .footNote {
|
|
display: inline-block;
|
|
padding: 7px 0px 7px 0px;
|
|
}
|