website/assets/partials/_footer.scss

57 lines
996 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
overflow-x: auto;
overflow-y: hidden;
white-space: nowrap;
&::after {
background: rgb(30, 30, 45);
content: '';
height: 10000px;
overflow: hidden;
position: fixed;
width: 100vw;
}
2020-09-14 16:24:02 +02:00
.container {
align-items: center;
display: flex;
height: 64px;
2020-09-21 10:59:52 +02:00
.website-subnav {
margin-left: auto;
ul {
display: flex;
padding: 0;
}
li {
list-style-type: none;
padding: 4px 0 4px 30px;
2020-09-21 10:59:52 +02:00
}
a {
color: rgb(200, 200, 230);
&:hover {
text-decoration: none;
border-bottom: 2px solid;
}
2020-09-21 10:59:52 +02:00
}
}
2020-09-14 16:24:02 +02:00
}
}
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: 4px 30px 4px 0;
2020-09-21 10:59:52 +02:00
}
}
}
2020-09-14 16:24:02 +02:00
}
}