From 2188ef09210b138d3a9c00bc59ca9065c7f3da71 Mon Sep 17 00:00:00 2001 From: Simon Date: Thu, 26 Jun 2025 23:13:31 -0400 Subject: [PATCH] introducing: collapsible menus for layers!! got the first few done, need to finish the rest of the layer customization menus --- startpage.html | 146 +++++++++++++++++++++++++++---------------------- 1 file changed, 80 insertions(+), 66 deletions(-) diff --git a/startpage.html b/startpage.html index 7312f0e..64e75d5 100644 --- a/startpage.html +++ b/startpage.html @@ -111,6 +111,21 @@ input[type="radio"] { width: auto; } + + .expandableMenuToggle { + cursor: pointer; + padding 18px; + width: 100%; + } + .expanded, .expandableMenuToggle:hover { + background-color: rgba(173, 165, 165, 0.8); + } + + .expandableMenu { + display: none; + padding: 0 18px; + border-left: 2px solid black; + } #instructionsTab { } @@ -172,7 +187,7 @@