diff options
author | thinkpadmaster <a.scerba02@gmail.com> | 2023-07-05 22:02:20 -0500 |
---|---|---|
committer | thinkpadmaster <a.scerba02@gmail.com> | 2023-07-05 22:02:20 -0500 |
commit | afdf9679035f33ad11f957d4479a948ed8543826 (patch) | |
tree | 7ce5ab3fe815e8d2d7e89dccf2cc121fd2b5d7e7 | |
parent | 16176f33cae0f1421f257044a1c3cd1da6704468 (diff) |
Give more contrast to hamburger
-rw-r--r-- | data/static/style.css | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/data/static/style.css b/data/static/style.css index 2a36919..447ed5a 100644 --- a/data/static/style.css +++ b/data/static/style.css @@ -292,10 +292,13 @@ img { .hamburger{ z-index: 3; position: fixed; - top: 15px; - right: 15px; - height: 40px; - width: 40px; + top: 0; + right: 0; + height: 70px; + width: 70px; + padding: 15px; + border-bottom-left-radius: 28px; + background-color: var(--dark-transparent); /* FOR DISPLAYING EVERY ELEMENT IN THE CENTER : */ @@ -387,4 +390,7 @@ img { visibility: visible; animation: fadeIn 0.8s ease; } + .toggler:checked ~ .hamburger { + background-color: #00000000; + } }
\ No newline at end of file |