From d52595bed0c995352ea3a917465b077297992008 Mon Sep 17 00:00:00 2001 From: Kumi Date: Mon, 5 Aug 2024 16:40:00 +0200 Subject: [PATCH] feat: enhance footer styling and structure Refined the footer section by adding CSS rules for better spacing, typography, and link hover effects to improve readability and visual appeal. Wrapped footer content in a container for better layout control. These changes aim to provide a more polished and consistent user experience. --- templates/index.html | 53 +++++++++++++++++++++++++++++--------------- 1 file changed, 35 insertions(+), 18 deletions(-) diff --git a/templates/index.html b/templates/index.html index 5739267..6fa6fa3 100644 --- a/templates/index.html +++ b/templates/index.html @@ -35,6 +35,21 @@ footer { background-color: #343a40; color: white; + padding: 40px 0; + } + footer h2 { + font-size: 1.5rem; + margin-bottom: 1rem; + } + footer p { + margin-bottom: 0.5rem; + } + footer a { + color: #ffc107; + } + footer a:hover { + color: #ffca2c; + text-decoration: none; } @@ -60,24 +75,26 @@ -