From 61c5b503352c983d4e532b5a59e2ae913e53e70c Mon Sep 17 00:00:00 2001 From: Syndamia Date: Sat, 1 Feb 2025 11:55:53 +0200 Subject: feat: Add create list button and improve new list page UI --- views/styles.css | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'views/styles.css') diff --git a/views/styles.css b/views/styles.css index 440da4e..e2a712f 100644 --- a/views/styles.css +++ b/views/styles.css @@ -45,7 +45,7 @@ h1 { text-align: center; } -input, button { +input, button, textarea { color: inherit; background-image: url(/paper.jpg); @@ -63,6 +63,11 @@ input, button { box-shadow: 0 0 0.4em var(--dark-purple); } +textarea { + resize: vertical; + min-height: 4em; +} + input[type=text]:focus { outline: 2px solid var(--highlight-border-color); } @@ -394,6 +399,12 @@ hr.new-section { height: 4em; } +#user-buttons { + margin: 0 1em 2em 1em; + display: flex; + flex-direction: row; +} + #user-nav { display: flex; flex-direction: row; -- cgit v1.2.3