From f097a5ec27f2238514f3816a440f96f7232465ea Mon Sep 17 00:00:00 2001
From: Gabriel Copat <copatg@cardiff.ac.uk>
Date: Wed, 29 Nov 2023 11:35:49 +0000
Subject: [PATCH] Updated CSS

---
 src/main/resources/static/css/allTrails.css | 27 +++++++++++++--------
 1 file changed, 17 insertions(+), 10 deletions(-)

diff --git a/src/main/resources/static/css/allTrails.css b/src/main/resources/static/css/allTrails.css
index b3d254a2..97ec2963 100644
--- a/src/main/resources/static/css/allTrails.css
+++ b/src/main/resources/static/css/allTrails.css
@@ -1,3 +1,7 @@
+body {
+    background-color: rgb(41, 41, 41);
+    margin: 0;
+}
 .centerFlex {
     display: flex;
     justify-content: center;
@@ -5,31 +9,29 @@
 #allTrailsBar {
     padding:0;
     max-width: 60%;
-    height: 12svh;
+    height: 11svh;
     margin: auto;
-    border-bottom: solid grey 4px;
-    border-top: solid grey 4px;
+    border-bottom: solid grey 2px;
+    /*border-top: solid grey 4px;*/
 
 }
 .trailsImages {
-    margin-left:auto;
-    margin-right:auto;
-    margin-top: auto;
-    margin-bottom: auto;
+    margin: auto;
     height: 10svh;
     width: 10svh;
     border-radius: 20px;
+    border: solid grey 2px;
     transition: 0.5s ease-out 100ms;
 
 }
 .trailsImages:hover {
-    box-shadow: 0 0 30px #bbbb00;
+    box-shadow: 0 0 20px 10px #bbbb00;
     transform: scale(1.2,1.2);
     !important; overflow: visible;
 }
 
 .selected {
-    box-shadow: 0 0 30px yellow;
+    box-shadow: 0 0 20px 10px #bbbb00;
 }
 
 .trailInfoBox {
@@ -41,4 +43,9 @@
 @keyframes fadeIn {
     0% { opacity: 0; }
     100% { opacity: 1; }
-}
\ No newline at end of file
+}
+
+
+
+
+
-- 
GitLab