bunteshaus.de/themes/buha/assets/scss/footer.scss

38 lines
556 B
SCSS
Raw Normal View History

2022-06-08 00:38:13 +02:00
.footer {
2022-06-16 20:40:09 +02:00
2022-06-08 00:38:13 +02:00
display: flex;
2022-06-16 01:00:58 +02:00
flex-direction: column;
2022-06-12 19:27:57 +02:00
width: 98vw;
2022-06-08 00:38:13 +02:00
margin-left: auto;
margin-right: auto;
.infobox {
2022-06-15 00:37:18 +02:00
display: flex;
2022-06-16 20:40:09 +02:00
flex: 1;
2022-06-15 00:37:18 +02:00
flex-direction: column;
2022-06-08 00:38:13 +02:00
text-align: center;
}
2022-06-16 01:00:58 +02:00
a {
margin-top: .8em;
}
2022-06-08 00:38:13 +02:00
}
2022-06-16 01:00:58 +02:00
2022-06-08 00:38:13 +02:00
@media (min-width: 640px) {
.footer {
2022-06-12 19:27:57 +02:00
max-width: 89%;
2022-06-08 00:38:13 +02:00
margin-left: auto;
margin-right: auto;
flex-direction: row;
2022-06-16 01:00:58 +02:00
justify-content: space-between;
2022-06-08 00:38:13 +02:00
.infobox {
2022-06-16 20:40:09 +02:00
flex: 1 0 auto;
2022-06-08 00:38:13 +02:00
text-align: left;
2022-06-16 01:00:58 +02:00
flex-direction: column;
2022-06-08 00:38:13 +02:00
}
2022-06-16 01:00:58 +02:00
.a { order: 2;}
.b { order: 3;}
.c { order: 1;}
2022-06-08 00:38:13 +02:00
}
}