From d71663400dc747a93426696fc47c8996e8302195 Mon Sep 17 00:00:00 2001 From: SAURABHM6341 <143603317+SAURABHM6341@users.noreply.github.com> Date: Tue, 22 Oct 2024 20:16:57 +0530 Subject: [PATCH 1/2] fixed allignment of arrows and made arrows (including FAQ) visible --- index.html | 4 ++-- main.css | 9 +++++---- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/index.html b/index.html index deadbd4..5be0a11 100644 --- a/index.html +++ b/index.html @@ -231,8 +231,8 @@ diff --git a/main.css b/main.css index b822267..6294886 100644 --- a/main.css +++ b/main.css @@ -234,17 +234,18 @@ z-index: 10; /* Make sure buttons are above other elements */ } .prev, .next { -background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */ +background-color: #07b797; /*background according to theme */ border: none; border-radius: 50%; cursor: pointer; outline: none; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); transition: background-color 0.3s; +padding:0px 0px; } .prev:hover, .next:hover { -background-color: rgba(255, 255, 255, 1); /* Solid background on hover */ +background-color: black; /* Solid background on hover */ } /* Optional: Responsive design */ @@ -1280,8 +1281,8 @@ padding: 15px 30px; display: inline-block; width: 12px; height: 12px; - border-right: 2px solid #fff; - border-bottom: 2px solid #fff; + border-right: 2px solid #040404; + border-bottom: 2px solid #040404; transform: rotate(45deg); transition: transform 0.3s ease; } From ac577e71674ac9da3d9d36e982689fa668ee521a Mon Sep 17 00:00:00 2001 From: SAURABHM6341 <143603317+SAURABHM6341@users.noreply.github.com> Date: Tue, 22 Oct 2024 20:23:29 +0530 Subject: [PATCH 2/2] fixed allignment of arrows and made arrows (including FAQ) visible --- main.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.css b/main.css index 6294886..0f66d19 100644 --- a/main.css +++ b/main.css @@ -234,8 +234,8 @@ z-index: 10; /* Make sure buttons are above other elements */ } .prev, .next { -background-color: #07b797; /*background according to theme */ -border: none; +background-color: black; +border: 2px solid #07b797; border-radius: 50%; cursor: pointer; outline: none; @@ -245,7 +245,7 @@ padding:0px 0px; } .prev:hover, .next:hover { -background-color: black; /* Solid background on hover */ +background-color: #07b797; /* Solid background on hover */ } /* Optional: Responsive design */