mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-12 12:41:30 +00:00
set footer height and body margin on smaller devices
This commit is contained in:
parent
d51ec988d8
commit
db63f8526c
|
@ -31,6 +31,12 @@ body {
|
||||||
/* Margin bottom by footer height */
|
/* Margin bottom by footer height */
|
||||||
margin-bottom: 60px;
|
margin-bottom: 60px;
|
||||||
}
|
}
|
||||||
|
@media (max-width: 991px) {
|
||||||
|
body {
|
||||||
|
/* Margin bottom by footer height */
|
||||||
|
margin-bottom: 90px;
|
||||||
|
}
|
||||||
|
}
|
||||||
.footer {
|
.footer {
|
||||||
font-size: 80%;
|
font-size: 80%;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
@ -41,6 +47,11 @@ body {
|
||||||
_line-height: 17px; /* Vertically center the text there */
|
_line-height: 17px; /* Vertically center the text there */
|
||||||
background-color: #f5f5f5;
|
background-color: #f5f5f5;
|
||||||
}
|
}
|
||||||
|
@media (max-width: 991px) {
|
||||||
|
.footer {
|
||||||
|
height: 108px;
|
||||||
|
}
|
||||||
|
}
|
||||||
.footer .disclaimer {
|
.footer .disclaimer {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding: 15px 0px 0px 0px;
|
padding: 15px 0px 0px 0px;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user