From 857dcff0ff6a09a6d8f33d8766ff4520e62f9bec Mon Sep 17 00:00:00 2001 From: s5260822 Date: Wed, 19 Mar 2025 00:25:32 +0100 Subject: [PATCH] added more form styling --- src/main/resources/static/index.css | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/src/main/resources/static/index.css b/src/main/resources/static/index.css index ca06fc5..e5f30f8 100644 --- a/src/main/resources/static/index.css +++ b/src/main/resources/static/index.css @@ -27,6 +27,7 @@ header { top: 0; left: 0; right: 0; + box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); } nav { @@ -64,7 +65,8 @@ body { color: var(--primary-color); line-height: 1.6; padding: 20px; - margin-top: 120px + margin-top: 120px; + padding-bottom: 110px; } /* Heading Styling */ @@ -209,6 +211,25 @@ tbody tr:hover { background-color: var(--accent-color); border-radius: 5px; padding: 5px 10px 5px 10px; + box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); +} + +.back-link a { text-decoration: none; color: white +} + +.filter-form { + background-color: white; + padding: 30px; + border-radius: 5px; + box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5); +} + +.filter-form form { + margin: 0; +} + +select { + min-width: 200px; } \ No newline at end of file