website/assets/sass/footer.scss

124 lines
2 KiB
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: 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;
}
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-05-26 19:44:22 +00:00
.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;
2023-07-14 09:57:56 +00:00
height: 2rem;
2023-05-26 19:44:22 +00:00
fill: white;
}
2023-05-21 20:39:56 +00:00
}
2023-07-14 09:57:56 +00:00
@media (max-width: $sm-breakpoint) {
2023-03-31 22:14:22 +00:00
.site-footer__content {
display: flex;
2023-07-14 09:57:56 +00:00
justify-content: center;
2023-03-31 22:14:22 +00:00
flex-direction: column;
2023-07-14 09:57:56 +00:00
align-items: center;
}
.site-footer__title-recall {
text-align: center;
}
.site-footer-socials {
justify-content: center;
2024-03-11 06:49:04 +00:00
margin-bottom: 2rem;
flex-wrap: wrap;
padding: 0 .5rem;
li {
margin-bottom: 1rem;
}
2023-07-14 09:57:56 +00:00
}
.inline-menu-list {
display: block;
text-align: center;
li {
margin-right: 0;
}
2023-03-31 22:14:22 +00:00
}
}