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