This commit is contained in:
Šimon Záriš 2024-06-09 16:44:09 +02:00
parent 2b74184755
commit b05b02e5f4
6 changed files with 361 additions and 18 deletions

Binary file not shown.

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 2.3 MiB

After

Width:  |  Height:  |  Size: 2.3 MiB

Binary file not shown.

@ -163,7 +163,7 @@ h1, h2, h3, h4, h5, h6 {
}
/* RESPONSIVE DESIGN */
@media(max-width: 992px) {
@media(max-width: 500px) {
#toggle_btn {
display: block;
@ -171,18 +171,19 @@ h1, h2, h3, h4, h5, h6 {
#dropdown_menu {
gap: unset;
position: absolute;
position: fixed;
height: 0;
right: 2rem;
top: 60px;
width: 300px;
background: rgba(255, 255, 255, 0.1);
left: 0;
top: 0;
width: 100%;
background: rgba(255, 255, 255, 0.5);
backdrop-filter: blur(15px);
border-radius: 10px;
overflow: hidden;
flex-direction: column;
transition: height .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
z-index: 100;
margin: 0;
}
#dropdown_menu.open {