website/assets/sass/footer.scss

95 lines
1.5 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: 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;
.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;
fill: white;
}
}
@media (max-width: $md-breakpoint) {
.site-footer__content {
display: flex;
justify-content: start;
flex-direction: column;
}
}