From 911152fe1b18cfadfd2f1b6ef97a0064eba510c2 Mon Sep 17 00:00:00 2001 From: Kumi Date: Wed, 17 Jan 2024 17:45:42 +0100 Subject: [PATCH] Update styling for enhanced visual harmony Revamped the appearance of service boxes by introducing a new border color, increased padding, and an inset shadow, aligning them with a new coffee-themed color scheme. Modified the styling of navigation and footer elements to use the new `.bg-coffee` class, ensuring consistency across the UI. These changes improve the overall aesthetic coherence of the interface and enhance user visual experience. --- assets/css/base.css | 10 ++++++++-- templates/base.html | 4 ++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/assets/css/base.css b/assets/css/base.css index 321f7e6..3513dc8 100644 --- a/assets/css/base.css +++ b/assets/css/base.css @@ -9,10 +9,12 @@ footer a { /* Give service boxes a border */ .service { - border: 1px black solid; + border: 1px #6F4E37 solid; border-radius: 10px; border-spacing: 10px; - padding: 10px; + padding: 30px; + box-sizing: border-box; + box-shadow: inset 0 0 10px #6F4E37; } /* Limit size of navbar logo */ @@ -26,3 +28,7 @@ footer a { padding-top: 20px; padding-bottom: 20px; } + +.bg-coffee { + background-color: #6F4E37; +} \ No newline at end of file diff --git a/templates/base.html b/templates/base.html index e94d438..bb80c59 100644 --- a/templates/base.html +++ b/templates/base.html @@ -16,7 +16,7 @@ -