From 83db0fac6c3beb88fb0e85e5f5446096f1c61e19 Mon Sep 17 00:00:00 2001 From: Kumi Date: Mon, 1 Jan 2024 12:26:17 +0100 Subject: [PATCH] Enhance (?) service box styling with border and padding Changed the styling of the service boxes to include a solid black border, rounded corners, and padding for better visual separation and aesthetic appeal. This update gives the elements a more defined and polished look, improving the overall user interface. --- assets/css/base.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/assets/css/base.css b/assets/css/base.css index 745fbd3..aab2928 100644 --- a/assets/css/base.css +++ b/assets/css/base.css @@ -7,9 +7,12 @@ footer a { color: #fff; } -/* Give service boxes a bottom margin */ +/* Give service boxes a border */ .service { - margin-bottom: 20px; + border: 1px black solid; + border-radius: 10px; + border-spacing: 10px; + padding: 10px; } /* Limit size of navbar logo */