181 lines
4 KiB
CSS
Executable file
181 lines
4 KiB
CSS
Executable file
.stickyWatch {
|
|
height: 0;
|
|
}
|
|
|
|
.Header {
|
|
padding: 15px calc(15vw - 30px);
|
|
width: 100%;
|
|
background: transparent;
|
|
top: 0;
|
|
position: fixed;
|
|
z-index: 1000;
|
|
|
|
& .logo {
|
|
fill-rule: evenodd;
|
|
clip-rule: evenodd;
|
|
stroke-linecap: round;
|
|
stroke-linejoin: round;
|
|
stroke-miterlimit: 1.5;
|
|
|
|
& .fussel {
|
|
stroke: white;
|
|
fill: var(--color-black);
|
|
stroke-width: 20px;
|
|
}
|
|
|
|
& .glasses {
|
|
fill: none;
|
|
stroke: white;
|
|
stroke-width: 62px;
|
|
}
|
|
}
|
|
|
|
& strong {
|
|
font-family: 'Roboto Condensed', sans-serif;
|
|
font-size: 1.5rem;
|
|
flex: 1.5;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
}
|
|
|
|
& nav {
|
|
position: relative;
|
|
font-weight: normal;
|
|
font-size: 1.2rem;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
& .active {
|
|
color: var(--color-orange);
|
|
}
|
|
}
|
|
|
|
& > .wrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 15px 22px;
|
|
transition: 750ms;
|
|
backdrop-filter: blur(10px);
|
|
border-radius: 0;
|
|
|
|
& > label {
|
|
display: none;
|
|
width: 30px;
|
|
height: 25px;
|
|
position: relative;
|
|
transform: rotate(0deg);
|
|
transition: var(--transition-time) ease-in-out;
|
|
cursor: pointer;
|
|
z-index: 20000;
|
|
|
|
& > span {
|
|
display: block;
|
|
position: absolute;
|
|
height: 5px;
|
|
width: 100%;
|
|
background: var(--color-white);
|
|
border-radius: 9px;
|
|
opacity: 1;
|
|
left: 0;
|
|
transform: rotate(0deg);
|
|
transition: .25s ease-in-out;
|
|
|
|
&:nth-child(1) {
|
|
top: 0;
|
|
}
|
|
|
|
&:nth-child(2), &:nth-child(3) {
|
|
top: 9px;
|
|
}
|
|
|
|
&:nth-child(4) {
|
|
top: 18px;
|
|
}
|
|
}
|
|
}
|
|
|
|
& > input[type="checkbox"]:checked + label span:nth-child(1) {
|
|
top: 18px;
|
|
width: 0;
|
|
left: 50%;
|
|
}
|
|
|
|
& > input[type="checkbox"]:checked + label span:nth-child(2) {
|
|
transform: rotate(45deg);
|
|
}
|
|
|
|
& > input[type="checkbox"]:checked + label span:nth-child(3) {
|
|
transform: rotate(-45deg);
|
|
}
|
|
|
|
& > input[type="checkbox"]:checked + label span:nth-child(4) {
|
|
top: 18px;
|
|
width: 0;
|
|
left: 50%;
|
|
}
|
|
}
|
|
|
|
&.sticks > .wrapper {
|
|
background: var(--color-black-transparent);
|
|
border-radius: 20px;
|
|
}
|
|
|
|
& input[type="checkbox"] {
|
|
display: none;
|
|
}
|
|
|
|
& ul {
|
|
gap: var(--spacing-standard);
|
|
transform: scale(1);
|
|
|
|
& a {
|
|
text-align: center;
|
|
|
|
&:hover {
|
|
transform: scale(1.15);
|
|
color: var(--color-orange);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@media screen and (width < 1180px) {
|
|
.Header {
|
|
& > .wrapper.wrapper > label {
|
|
display: block;
|
|
}
|
|
|
|
& input[type="checkbox"]:checked ~ nav {
|
|
transform: translateX(-15vw);
|
|
}
|
|
|
|
& nav {
|
|
background: var(--color-black);
|
|
position: absolute;
|
|
overflow: hidden;
|
|
height: 100vh;
|
|
width: 100vw;
|
|
top: -15px;
|
|
transition: var(--transition-time);
|
|
transform: translateX(100%);
|
|
color: var(--color-white);
|
|
flex-direction: column;
|
|
|
|
& ul {
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
gap: 8vh;
|
|
|
|
& li {
|
|
font-size: clamp(1rem, 10vw, 3rem);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|