mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 01:16:27 +00:00
58 lines
1.2 KiB
CSS
58 lines
1.2 KiB
CSS
/* Sticky footer hacks */
|
|
html, body {
|
|
height: 100%;
|
|
}
|
|
|
|
#wrap {
|
|
min-height: 100%;
|
|
}
|
|
|
|
#main {
|
|
overflow: auto;
|
|
padding-bottom:60px; /* this needs to be bigger than footer height*/
|
|
}
|
|
|
|
footer {
|
|
position: relative;
|
|
margin-top: -50px; /* negative value of footer height */
|
|
height: 50px;
|
|
clear:both;
|
|
padding-top:20px;
|
|
}
|
|
|
|
/* Remove the navbar's default margin-bottom and rounded borders */
|
|
.navbar {
|
|
margin-bottom: 0;
|
|
border-radius: 0;
|
|
}
|
|
|
|
/* Set height of the grid so .sidenav can be 100% (adjust as needed) */
|
|
.row.content {
|
|
height: 100%;
|
|
overflow: auto;
|
|
}
|
|
|
|
/* Set gray background color and 100% height */
|
|
.sidenav {
|
|
padding-top: 20px;
|
|
background-color: #f1f1f1;
|
|
}
|
|
.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
/* Set black background color, white text and some padding */
|
|
footer {
|
|
background-color: #ff69b4;
|
|
color: white;
|
|
padding: 15px;
|
|
}
|
|
|
|
/* On small screens, set height to 'auto' for sidenav and grid */
|
|
@media screen and (max-width: 767px) {
|
|
.sidenav {
|
|
height: auto;
|
|
padding: 15px;
|
|
}
|
|
.row.content {height:auto;}
|
|
}
|