60 lines
944 B
SCSS
60 lines
944 B
SCSS
html {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
min-height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.footer-push {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.site-footer {
|
|
border-top: .3rem solid $accent;
|
|
margin-top: 1rem;
|
|
background-color: $background;
|
|
color: white;
|
|
|
|
a {
|
|
color: white;
|
|
text-decoration: none;
|
|
}
|
|
a:hover {
|
|
opacity: 0.8;
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
// .site-footer__title {
|
|
// @extends .serif-font;
|
|
// }
|
|
|
|
.site-footer__title-recall {
|
|
width: 9em;
|
|
.site-footer__logo {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.site-footer__content {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding-top: 1rem;
|
|
padding-bottom: 4rem;
|
|
}
|
|
|
|
.site-footer__links {
|
|
padding-top: 1rem;
|
|
}
|
|
|
|
@media (max-width: $md-breakpoint) {
|
|
.site-footer__content {
|
|
display: flex;
|
|
justify-content: start;
|
|
flex-direction: column;
|
|
}
|
|
}
|