mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-03-03 11:27:09 +00:00
42 lines
578 B
CSS
42 lines
578 B
CSS
/* Sticky footer from https://css-tricks.com/couple-takes-sticky-footer/#article-header-id-3 */
|
|
html, body {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.content {
|
|
flex: 1 0 auto;
|
|
}
|
|
|
|
main {
|
|
padding-top: 12px;
|
|
}
|
|
|
|
form {
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.social_providers_list > form {
|
|
display: inline-block;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
|
|
.footer {
|
|
height: 60px;
|
|
line-height: 60px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.footer .container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
}
|
|
/* end of sticky footer styles */
|