summaryrefslogtreecommitdiff
path: root/templates/styles.css
diff options
context:
space:
mode:
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 {