website/assets/import/footer.scss

61 lines
1.1 KiB
SCSS
Raw Normal View History

2020-09-14 16:24:02 +02:00
footer {
2020-11-03 20:33:16 +01:00
background: $bg30;
color: $white-dark;
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 {
2020-11-03 20:33:16 +01:00
background: $bg30;
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;
2020-11-03 20:33:16 +01:00
color: $white-dark;
2020-10-05 09:57:10 +02:00
padding: 5px 0;
transition: border .2s, color .2s;
&:hover {
border-bottom: 1px solid;
2020-11-03 20:33:16 +01:00
color: $red;
2020-10-05 09:57:10 +02:00
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
}
}