2018-03-12 19:31:14 +00:00
|
|
|
|
|
|
|
.navbar {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
z-index: $zIndex--4;
|
|
|
|
padding: .4em;
|
|
|
|
color: $white;
|
|
|
|
font-family: $font-secondary;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar svg {
|
|
|
|
fill: $white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav svg {
|
|
|
|
height: 10px;
|
|
|
|
width: 10px;
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar .menu {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
flex: 96% 0 0;
|
|
|
|
padding-right: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar li {
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-family: $font-secondary;
|
|
|
|
color: $grey;
|
2022-05-21 21:47:39 +00:00
|
|
|
line-height: 2;
|
2019-07-15 21:49:09 +00:00
|
|
|
width: 100%;
|
2018-03-12 19:31:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.navbar li.todo {
|
|
|
|
text-align: center;
|
2019-07-15 21:49:09 +00:00
|
|
|
padding-right: 1.2em;
|
2018-03-12 19:31:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.navbar a {
|
|
|
|
border-bottom: none;
|
2019-07-15 21:49:09 +00:00
|
|
|
display: block;
|
2020-11-24 02:38:48 +00:00
|
|
|
padding-left: 2.2em;
|
2018-03-12 19:31:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.navbar a:hover,
|
|
|
|
.navbar a:focus {
|
|
|
|
color: $golden;
|
2019-07-15 21:49:09 +00:00
|
|
|
background-size: 2.5em 2.5em;
|
2018-03-12 19:31:14 +00:00
|
|
|
}
|
|
|
|
|
2022-05-21 21:47:39 +00:00
|
|
|
.navbar li:hover svg {
|
2018-03-12 19:31:14 +00:00
|
|
|
fill: $golden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.overlay,
|
|
|
|
.control,
|
|
|
|
.control ~ .slideout {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.control ~ .slideout {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
width: 200px;
|
|
|
|
height: 100vh;
|
2020-01-28 16:40:46 +00:00
|
|
|
padding: 8em 0 1em 0;
|
2018-03-12 19:31:14 +00:00
|
|
|
background-color: $white;
|
|
|
|
display: inline-block;
|
|
|
|
transform: matrix(1, 0, 0, 1, 220, 0);
|
|
|
|
transition: all .3s cubic-bezier(.77, 0, .175, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
.control:checked ~ .slideout {
|
|
|
|
transform: matrix(1, 0, 0, 1, 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
.slideout label {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
right: 200px;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
z-index: -1;
|
|
|
|
background-color: rgba(0, 0, 0, .5);
|
|
|
|
}
|
|
|
|
|
|
|
|
.control:checked ~ .slideout label {
|
|
|
|
width: 100vw;
|
|
|
|
height: 100vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
.slideout a {
|
|
|
|
color: $black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hamburger {
|
|
|
|
position: absolute;
|
|
|
|
width: 200px;
|
|
|
|
height: 165px;
|
|
|
|
top: -70px;
|
|
|
|
right: -85px;
|
|
|
|
background-color: $black;
|
|
|
|
border-radius: 50%;
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
z-index: $zIndex--4;
|
|
|
|
padding: .4em;
|
|
|
|
color: $white;
|
|
|
|
font-family: $font-secondary;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hamburg-box {
|
|
|
|
cursor: pointer;
|
|
|
|
position: relative;
|
|
|
|
left: 3px;
|
|
|
|
top: 33px;
|
|
|
|
width: 120px;
|
|
|
|
height: 70px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hamburger svg {
|
|
|
|
fill: $white;
|
|
|
|
width: 28px;
|
|
|
|
height: 28px;
|
|
|
|
margin-left: 5px;
|
|
|
|
margin-top: -10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hamburger svg:last-of-type {
|
|
|
|
display: none;
|
|
|
|
margin-left: 47px;
|
|
|
|
margin-top: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hamburger:hover svg {
|
|
|
|
fill: $golden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.overlay:not(:checked) ~ .hamburger svg:first-of-type {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.overlay:not(:checked) ~ .hamburger svg:last-of-type {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: $mq-small) {
|
2018-03-21 03:03:12 +00:00
|
|
|
.hamburger {
|
|
|
|
width: 170px;
|
|
|
|
top: -80px;
|
|
|
|
right: -75px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hamburg-box {
|
|
|
|
top: 45px;
|
|
|
|
width: 95px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hamburger svg:last-of-type {
|
|
|
|
margin-left: 30px;
|
|
|
|
}
|
2018-03-12 19:31:14 +00:00
|
|
|
}
|