2022-09-29 17:00:28 +00:00
|
|
|
html {
|
|
|
|
height: 100%;
|
|
|
|
}
|
2023-04-10 19:55:40 +00:00
|
|
|
|
2022-09-29 17:00:28 +00:00
|
|
|
body {
|
|
|
|
min-height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2023-04-10 19:55:40 +00:00
|
|
|
|
2022-09-29 17:00:28 +00:00
|
|
|
.footer-push {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.site-footer {
|
2023-03-31 22:14:22 +00:00
|
|
|
border-top: .3rem solid $accent;
|
2022-09-29 15:24:11 +00:00
|
|
|
margin-top: 1rem;
|
2022-09-29 17:00:28 +00:00
|
|
|
padding-top: 2rem;
|
|
|
|
padding-bottom: 4rem;
|
|
|
|
background-color: $background;
|
|
|
|
color: white;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: white;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
a:hover {
|
|
|
|
opacity: 0.8;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-31 22:14:22 +00:00
|
|
|
.site-footer__title {
|
|
|
|
@extends .serif-font;
|
|
|
|
}
|
|
|
|
|
2022-09-29 17:00:28 +00:00
|
|
|
.site-footer__content {
|
2023-03-31 22:14:22 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
2023-04-10 19:55:40 +00:00
|
|
|
|
|
|
|
// .site-footer__links {
|
|
|
|
// }
|
2022-09-29 17:00:28 +00:00
|
|
|
|
2023-03-31 22:14:22 +00:00
|
|
|
@media (max-width: $md-breakpoint) {
|
|
|
|
.site-footer__content {
|
|
|
|
display: flex;
|
|
|
|
justify-content: start;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2022-09-29 15:24:11 +00:00
|
|
|
}
|