summaryrefslogtreecommitdiff
path: root/templates/styles.css
diff options
context:
space:
mode:
authorAdam T. Carpenter <atc@53hor.net>2025-03-24 23:22:09 -0400
committerAdam T. Carpenter <atc@53hor.net>2025-03-24 23:22:09 -0400
commit576fd3912c6a38ffc156c666874431a78faf9476 (patch)
tree104cd2165e98e6d2cda7bbe245a7cc9dc8eae5b3 /templates/styles.css
parent7d9343546c68fc48f18de153374cd326fb0de682 (diff)
downloadcarpentertutoring-576fd3912c6a38ffc156c666874431a78faf9476.tar.xz
carpentertutoring-576fd3912c6a38ffc156c666874431a78faf9476.zip
feat: collapsible nav menuHEADmaster
Diffstat (limited to 'templates/styles.css')
-rw-r--r--templates/styles.css21
1 files changed, 19 insertions, 2 deletions
diff --git a/templates/styles.css b/templates/styles.css
index 2a83280..63cef43 100644
--- a/templates/styles.css
+++ b/templates/styles.css
@@ -34,8 +34,16 @@ body {
nav {
display: flex;
+ flex-direction: row-reverse;
background-color: white;
- flex-direction: column-reverse;
+}
+
+nav div {
+ display: flex;
+ flex-direction: row;
+ overflow: hidden;
+ flex-wrap: wrap;
+ height: 3em;
}
nav img {
@@ -53,7 +61,16 @@ nav a {
nav a:hover {
color: var(--darkteal);
- background-color: lightgray;
+}
+
+a#menu-toggle {
+ cursor: pointer;
+}
+
+nav div.menu-open {
+ height: auto;
+ flex-wrap: off;
+ flex-direction: column;
}
div.buttons {