AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

This commit is contained in:
Ferit Yiğit BALABAN
2022-07-07 21:06:35 +03:00
parent 9ac4883bd3
commit 1beb1e8711
7 changed files with 289 additions and 33 deletions

View File

@@ -30,6 +30,14 @@ html, body {
padding-bottom: 0;
}
.hidden {
display: none;
}
.flex {
display: flex;
}
#header {
// Layout, details and children is set in partials/header.scss
height: 10vh;
@@ -39,6 +47,27 @@ html, body {
}
}
.dropdown {
position: fixed;
z-index: 2;
background-color: #706fff;
width: 100vw;
height: 90vh;
animation: slide-in-right 550ms;
flex-direction: column;
align-items: center;
.dropdown-nav-item {
color: white;
font: 600 28px "Montserrat", sans-serif;
text-decoration: none;
}
}
.dropdown_close_animation {
animation: 550ms slide-in-left;
}
#container {
height: 90vh;
display: grid;