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;
|
2020-09-29 19:37:50 +02:00
|
|
|
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;
|
2020-09-29 19:37:50 +02:00
|
|
|
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-30 20:05:47 +02:00
|
|
|
}
|
2020-09-21 10:59:52 +02:00
|
|
|
}
|
|
|
|
}
|
2020-09-14 16:24:02 +02:00
|
|
|
}
|
|
|
|
}
|
2020-09-21 11:21:54 +02:00
|
|
|
|
2020-09-21 10:59:52 +02:00
|
|
|
@media (max-width: 600px) {
|
|
|
|
footer {
|
|
|
|
.container {
|
2020-09-21 11:21:54 +02:00
|
|
|
max-width: none;
|
2020-09-21 10:59:52 +02:00
|
|
|
.website-version {
|
|
|
|
order: 2;
|
|
|
|
padding: 10px 20px;
|
|
|
|
}
|
|
|
|
.website-subnav {
|
|
|
|
li {
|
2020-09-29 19:37:50 +02:00
|
|
|
padding: 4px 30px 4px 0;
|
2020-09-21 10:59:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-09-14 16:24:02 +02:00
|
|
|
}
|
|
|
|
}
|