website/sass/css/footer.scss

41 lines
560 B
SCSS

@import "defs";
footer {
margin-top: 32px;
background: linear-gradient(0.25turn, $blue, $violet);
color: #fff;
font-size: 18px;
}
.footer-wrapper {
display: flex;
max-width: 1100px;
padding: 16px 4px;
margin: auto;
gap: 20px;
justify-content: center;
align-items: center;
}
.footer-pane {
flex: 1;
max-width: 800px;
}
@media screen and (max-width: 900px) {
.footer-wrapper {
flex-direction: column;
justify-content: center;
align-items: center;
}
}
footer a, footer a:visited {
color: #fdb;
}
.footer-bigger {
font-size: 24px;
}