2020-09-14 16:24:02 +02:00
|
|
|
nav {
|
2020-11-03 20:33:16 +01:00
|
|
|
background: $bg60;
|
2020-09-21 10:59:52 +02:00
|
|
|
overflow-x: auto;
|
2020-09-29 19:37:50 +02:00
|
|
|
overflow-y: hidden;
|
2020-10-05 20:34:39 +02:00
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
2020-09-29 19:37:50 +02:00
|
|
|
white-space: nowrap;
|
2020-11-09 18:49:14 +01:00
|
|
|
z-index: 20;
|
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-name {
|
2020-09-14 16:24:02 +02:00
|
|
|
a {
|
2020-11-03 20:33:16 +01:00
|
|
|
color: $white;
|
2020-09-27 22:28:13 +02:00
|
|
|
display: block;
|
2020-09-29 19:37:50 +02:00
|
|
|
padding: 20px 30px;
|
|
|
|
text-decoration: none;
|
2020-09-27 22:28:13 +02:00
|
|
|
transition: background .2s;
|
2020-09-29 19:37:50 +02:00
|
|
|
&:hover {
|
2020-11-03 20:33:16 +01:00
|
|
|
background: $bg50;
|
2020-09-29 19:37:50 +02:00
|
|
|
}
|
2020-10-05 09:57:10 +02:00
|
|
|
&.active {
|
2020-11-03 20:33:16 +01:00
|
|
|
border-bottom: 2px solid $white-dark;
|
2020-10-05 09:57:10 +02:00
|
|
|
border-top: 2px solid transparent;
|
|
|
|
padding: 16px 30px;
|
|
|
|
}
|
2020-09-14 16:24:02 +02:00
|
|
|
}
|
|
|
|
}
|
2020-09-30 20:37:20 +02:00
|
|
|
.seperator {
|
2020-10-05 09:57:10 +02:00
|
|
|
cursor: default;
|
2020-09-30 20:37:20 +02:00
|
|
|
display: block;
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
.website-mainmenu {
|
2020-09-14 16:24:02 +02:00
|
|
|
ul {
|
|
|
|
display: flex;
|
2020-09-23 18:17:31 +02:00
|
|
|
margin: 0;
|
2020-09-29 19:37:50 +02:00
|
|
|
padding: 0;
|
2020-09-23 18:17:31 +02:00
|
|
|
li {
|
|
|
|
list-style-type: none;
|
2020-10-05 09:57:10 +02:00
|
|
|
&.active a {
|
2020-11-03 20:33:16 +01:00
|
|
|
border-bottom: 2px solid $white-dark;
|
2020-10-05 09:57:10 +02:00
|
|
|
border-top: 4px solid transparent;
|
|
|
|
padding: 16px 30px;
|
|
|
|
}
|
2020-09-23 18:17:31 +02:00
|
|
|
a {
|
2020-11-03 20:33:16 +01:00
|
|
|
color: $white;
|
2020-09-23 18:17:31 +02:00
|
|
|
display: block;
|
2020-09-29 19:37:50 +02:00
|
|
|
text-decoration: none;
|
2020-09-23 18:17:31 +02:00
|
|
|
transition: background .2s;
|
2020-09-29 19:37:50 +02:00
|
|
|
padding: 20px 30px;
|
|
|
|
&:hover {
|
2020-11-03 20:33:16 +01:00
|
|
|
background: $bg50;
|
2020-09-29 19:37:50 +02:00
|
|
|
}
|
2020-09-23 18:17:31 +02:00
|
|
|
}
|
2020-09-30 20:37:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.website-externallinks {
|
|
|
|
margin-left: auto;
|
|
|
|
ul {
|
|
|
|
display: flex;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
li {
|
|
|
|
list-style-type: none;
|
|
|
|
a {
|
2020-11-03 20:33:16 +01:00
|
|
|
color: $white;
|
2020-09-30 20:37:20 +02:00
|
|
|
display: block;
|
|
|
|
text-decoration: none;
|
|
|
|
transition: background .2s;
|
|
|
|
padding: 20px 30px;
|
|
|
|
&:hover {
|
2020-11-03 20:33:16 +01:00
|
|
|
background: $bg50;
|
2020-09-30 20:37:20 +02:00
|
|
|
}
|
|
|
|
}
|
2020-09-23 18:17:31 +02:00
|
|
|
.seperator {
|
|
|
|
display: block;
|
2020-09-29 19:37:50 +02:00
|
|
|
padding: 20px 10px;
|
2020-09-23 18:17:31 +02:00
|
|
|
}
|
|
|
|
}
|
2020-09-14 16:24:02 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-09-30 20:37:20 +02:00
|
|
|
@media (max-width: 1140px) {
|
2020-09-21 10:59:52 +02:00
|
|
|
nav {
|
|
|
|
.container {
|
2020-09-30 20:37:20 +02:00
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media (max-width: 800px) {
|
|
|
|
nav {
|
|
|
|
.container {
|
|
|
|
.website-externallinks {
|
|
|
|
ul {
|
|
|
|
li {
|
|
|
|
a {
|
2020-11-03 20:33:16 +01:00
|
|
|
background: $bg50;
|
|
|
|
color: $white-dark;
|
2020-09-30 20:37:20 +02:00
|
|
|
&:hover {
|
2020-11-03 20:33:16 +01:00
|
|
|
background: $bg40;
|
2020-09-30 20:37:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.seperator {
|
|
|
|
display: block;
|
|
|
|
padding: 20px 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-09-21 10:59:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|