website/assets/scss/partials/_footer.scss

42 lines
711 B
SCSS
Raw Normal View History

2020-09-14 16:24:02 +02:00
footer {
background: rgb(30, 30, 45);
color: rgb(200, 200, 230);
margin-top: 100px;
2020-09-21 10:59:52 +02:00
white-space: nowrap;
overflow-x: auto;
2020-09-14 16:24:02 +02:00
.container {
display: flex;
align-items: center;
2020-09-21 10:59:52 +02:00
max-width: none;
.website-subnav {
margin-left: auto;
ul {
display: flex;
padding: 0;
}
li {
list-style-type: none;
padding: 10px 0 10px 30px;
}
a {
color: rgb(200, 200, 230);
}
}
2020-09-14 16:24:02 +02:00
}
}
2020-09-21 10:59:52 +02:00
@media (max-width: 600px) {
footer {
.container {
.website-version {
order: 2;
padding: 10px 20px;
}
.website-subnav {
li {
padding: 10px 30px 10px 0;
}
}
}
2020-09-14 16:24:02 +02:00
}
}