diff options
| author | Mhykol <mchaeldonald62@pm.me> | 2024-05-17 09:59:11 -0400 |
|---|---|---|
| committer | Mhykol <mchaeldonald62@pm.me> | 2024-05-17 09:59:11 -0400 |
| commit | e54a90f0cfc51d8c7b1c560176c8557859487cca (patch) | |
| tree | 4eed250a14ad5d9797e91d3de13f204dfeca3536 | |
| parent | a1634ad45a17ad95a2a8bd65a5239df00cb5dca9 (diff) | |
Fixed menu icon for desktop site
| -rw-r--r-- | assets/css/main.css | 38 |
1 files changed, 36 insertions, 2 deletions
diff --git a/assets/css/main.css b/assets/css/main.css index 04b914d..6a75b5e 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -606,12 +606,46 @@ body { /* Desktop */ @media screen and (min-width: 1000px) { + :root { + --button-size-offset: 20px; + } body button { cursor: pointer; } - :root { - --button-size-offset: 20px; + + #header .menuIcon { + width: 80px; + height: 80px; + margin-top: 80vh; + margin-left: 90%; + cursor: pointer; + gap: 10px; + } + #header .menuIcon:hover { + margin-top: calc(80vh - 10px); + margin-left: calc(90% - 10px); + width: 100px; + height: 100px; + gap: 15px; } + #header .menuIcon div { + width: 15px; + height: 15px; + } + #header .menulist { + gap: 2%; + } + #header .menulist img { + width: 200px; + height: auto; + } + #header .menulist a { + font-size: 35px; + } + #header .menulist div { + cursor: pointer; + } + #index { margin: 0px; padding: 0px; |
