website/assets/partials/_footer.scss

51 lines
852 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
.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
}
}
footer::after {
content: '';
background: rgb(30, 30, 45);
position: fixed;
height: 10000px;
width: 100vw;
overflow: hidden;
}
2020-09-21 10:59:52 +02:00
@media (max-width: 600px) {
footer {
.container {
max-width: none;
2020-09-21 10:59:52 +02:00
.website-version {
order: 2;
padding: 10px 20px;
}
.website-subnav {
li {
padding: 10px 30px 10px 0;
}
}
}
2020-09-14 16:24:02 +02:00
}
}