website/assets/sass/footer.scss

124 lines
2 KiB
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: 4rem;
background-color: $background;
color: white;
a {
color: white;
text-decoration: none;
}
a:hover {
opacity: 0.8;
text-decoration: underline;
}
}
.landing-page .site-footer {
margin-top: 1rem;
}
// .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;
.inline-menu-list {
}
}
.site-footer-socials {
margin: 0;
padding: 0;
margin-bottom: 1rem;
display: flex;
justify-content: flex-end;
list-style-type: none;
li {
margin-right: 1.5rem;
}
li:last-of-type {
margin-right: 0;
}
a {
display: flex;
align-items: center;
opacity: 0.8;
height: 100%;
cursor: pointer;
}
a:hover {
opacity: 1;
}
.site-footer-socials__logo {
width: 2rem;
height: 2rem;
fill: white;
}
}
@media (max-width: $sm-breakpoint) {
.site-footer__content {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
.site-footer__title-recall {
text-align: center;
}
.site-footer-socials {
justify-content: center;
margin-bottom: 2rem;
flex-wrap: wrap;
padding: 0 .5rem;
li {
margin-bottom: 1rem;
}
}
.inline-menu-list {
display: block;
text-align: center;
li {
margin-right: 0;
}
}
}