website/assets/import/footer.scss

61 lines
1.2 KiB
SCSS
Raw Normal View History

2020-09-14 16:24:02 +02:00
footer {
background: rgb(30, 30, 45);
2020-10-05 09:57:10 +02:00
color: rgb(215, 215, 235);
2020-09-14 16:24:02 +02:00
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;
list-style-type: none;
2020-10-05 09:57:10 +02:00
padding: 0;
li {
margin-left: 30px;
a {
border-bottom: 1px solid transparent;
color: rgb(215, 215, 235);
padding: 5px 0;
transition: border .2s, color .2s;
&:hover {
border-bottom: 1px solid;
color: rgb(255, 130, 130);
text-decoration: none;
}
}
}
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
}
}