website/sass/css/footer.scss

41 lines
560 B
SCSS
Raw Permalink Normal View History

2023-03-20 18:06:57 +00:00
@import "defs";
2022-09-26 21:24:15 +00:00
footer {
margin-top: 32px;
2023-03-20 18:06:57 +00:00
background: linear-gradient(0.25turn, $blue, $violet);
2022-09-26 21:24:15 +00:00
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;
2022-09-26 21:24:15 +00:00
}
.footer-pane {
flex: 1;
2023-04-28 22:28:54 +00:00
max-width: 800px;
}
@media screen and (max-width: 900px) {
.footer-wrapper {
flex-direction: column;
justify-content: center;
align-items: center;
}
2022-09-26 21:24:15 +00:00
}
2023-03-22 23:15:56 +00:00
footer a, footer a:visited {
2022-09-26 21:24:15 +00:00
color: #fdb;
}
.footer-bigger {
font-size: 24px;
}