website/assets/sass/footer.scss

61 lines
944 B
SCSS
Raw Normal View History

html {
height: 100%;
}
body {
min-height: 100%;
display: flex;
flex-direction: column;
}
.footer-push {
flex-grow: 1;
}
.site-footer {
2023-03-31 22:14:22 +00:00
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;
}
}
2023-05-21 20:39:56 +00:00
// .site-footer__title {
// @extends .serif-font;
// }
.site-footer__title-recall {
width: 9em;
.site-footer__logo {
height: 100%;
width: 100%;
}
2023-03-31 22:14:22 +00:00
}
.site-footer__content {
2023-03-31 22:14:22 +00:00
display: flex;
justify-content: space-between;
2023-05-21 20:39:56 +00:00
padding-top: 1rem;
padding-bottom: 4rem;
2023-03-31 22:14:22 +00:00
}
2023-05-21 20:39:56 +00:00
.site-footer__links {
padding-top: 1rem;
}
2023-03-31 22:14:22 +00:00
@media (max-width: $md-breakpoint) {
.site-footer__content {
display: flex;
justify-content: start;
flex-direction: column;
}
}