From 5e08284c7d670ed38306ea8ed84055e4f7fd36db Mon Sep 17 00:00:00 2001 From: Sayyad Aslam Date: Sat, 10 Aug 2024 15:32:41 +0530 Subject: [PATCH 1/8] Added CustomScrollbar in Testimonials --- styles/testimonials.css | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/styles/testimonials.css b/styles/testimonials.css index 7331f3f..cbe324c 100644 --- a/styles/testimonials.css +++ b/styles/testimonials.css @@ -7,6 +7,33 @@ body { overflow-x: hidden; } +::-webkit-scrollbar { + width: 14px !important; + } + + ::-webkit-scrollbar-track { + background: linear-gradient(180deg, #d58cff, #b73aff); + border-radius: 10px; + } + + ::-webkit-scrollbar-thumb { + background: linear-gradient(180deg, #8000ff, #ffcc00, #0066ff); + border-radius: 10px; + border: 1px solid #ccccf7; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); + } + + ::-webkit-scrollbar-thumb:hover { + background: linear-gradient(180deg, #7e14e9, #f8d420, #3388ff); + box-shadow: 0 0 15px rgba(0, 0, 0, 0.7); + } + + ::-webkit-scrollbar-thumb:active { + background: linear-gradient(180deg, #6600cc, #ffbb00, #0044cc); /* Darker gradient on active */ + box-shadow: 0 0 20px rgba(0, 0, 0, 0.9); /* Intense glow effect */ + } + + .navbarr { display: flex; justify-content: space-between; From caa5c4628397b51e0376634ee6c75488e30bb537 Mon Sep 17 00:00:00 2001 From: Sayyad Aslam Date: Sat, 10 Aug 2024 15:32:51 +0530 Subject: [PATCH 2/8] Added CustomScrollbar in HowToPlay --- styles/howtoplay.css | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/styles/howtoplay.css b/styles/howtoplay.css index c736b14..f4af571 100644 --- a/styles/howtoplay.css +++ b/styles/howtoplay.css @@ -6,6 +6,34 @@ body { overflow-x: hidden; } +::-webkit-scrollbar { + width: 14px; + } + + ::-webkit-scrollbar-track { + background: linear-gradient(180deg, #d5d5ff, #9d9dff); /* Background color */ + border-radius: 10px; + } + + ::-webkit-scrollbar-thumb { + background: linear-gradient(180deg, #8000ff, #ffcc00, #0066ff); + border-radius: 10px; + border: 1px solid #ccccf7; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); + } + + ::-webkit-scrollbar-thumb:hover { + background: linear-gradient(180deg, #7e14e9, #f8d420, #3388ff); + box-shadow: 0 0 15px rgba(0, 0, 0, 0.7); + } + + ::-webkit-scrollbar-thumb:active { + background: linear-gradient(180deg, #6600cc, #ffbb00, #0044cc); /* Darker gradient on active */ + box-shadow: 0 0 20px rgba(0, 0, 0, 0.9); /* Intense glow effect */ + } + + + .navbar-toggler { background-color: transparent; border: none; From 034d693a2172f267b993cdcac8bbaf3375f07187 Mon Sep 17 00:00:00 2001 From: Sayyad Aslam Date: Sat, 10 Aug 2024 15:33:00 +0530 Subject: [PATCH 3/8] Added CustomScrollbar in Contributors --- styles/contributors.css | 44 ++++++++++++++++++++++++++++++----------- 1 file changed, 32 insertions(+), 12 deletions(-) diff --git a/styles/contributors.css b/styles/contributors.css index c380189..a05b8b7 100644 --- a/styles/contributors.css +++ b/styles/contributors.css @@ -7,6 +7,38 @@ body { /* Hide horizontal scrollbar */ } + +::-webkit-scrollbar { + width: 14px; + } + + + ::-webkit-scrollbar-track { + background: linear-gradient(180deg, #fffdd5, #ffe676); /* Background color */ + border-radius: 10px; + } + + + ::-webkit-scrollbar-thumb { + background: linear-gradient(180deg, #8000ff, #ffcc00, #0066ff); + border-radius: 10px; + border: 1px solid #ccccf7; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); + } + + + ::-webkit-scrollbar-thumb:hover { + background: linear-gradient(180deg, #7e14e9, #f8d420, #3388ff); + box-shadow: 0 0 15px rgba(0, 0, 0, 0.7); + } + + ::-webkit-scrollbar-thumb:active { + background: linear-gradient(180deg, #6600cc, #ffbb00, #0044cc); /* Darker gradient on active */ + box-shadow: 0 0 20px rgba(0, 0, 0, 0.9); /* Intense glow effect */ + } + + + .header-hero { position: relative; padding-top: 50px; @@ -233,18 +265,6 @@ body { background-position: center; } -::-webkit-scrollbar { - width: 8px; -} - -::-webkit-scrollbar-thumb { - background-color: rgba(255, 217, 121, 0.979); - border-radius: 15px; -} - -::-webkit-scrollbar-track { - background-color: black; -} /* Responsive adjustments */ @media (max-width: 768px) { From 43dcd51847413acd9873754a975bc5dd48e3eb83 Mon Sep 17 00:00:00 2001 From: Sayyad Aslam Date: Sat, 10 Aug 2024 15:33:08 +0530 Subject: [PATCH 4/8] Added CustomScrollbar in Licensing --- pages/licensing.html | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/pages/licensing.html b/pages/licensing.html index 47dc80c..9506461 100644 --- a/pages/licensing.html +++ b/pages/licensing.html @@ -25,6 +25,35 @@ #last-updated-date { font-size: 15px; } + + +::-webkit-scrollbar { + width: 14px; + } + + ::-webkit-scrollbar-track { + background: linear-gradient(180deg, #d5d5ff, #9d9dff); /* Background color */ + border-radius: 10px; + } + + ::-webkit-scrollbar-thumb { + background: linear-gradient(180deg, #8000ff, #ffcc00, #0066ff); + border-radius: 10px; + border: 1px solid #ccccf7; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); + } + + ::-webkit-scrollbar-thumb:hover { + background: linear-gradient(180deg, #7e14e9, #f8d420, #3388ff); + box-shadow: 0 0 15px rgba(0, 0, 0, 0.7); + } + + ::-webkit-scrollbar-thumb:active { + background: linear-gradient(180deg, #6600cc, #ffbb00, #0044cc); /* Darker gradient on active */ + box-shadow: 0 0 20px rgba(0, 0, 0, 0.9); /* Intense glow effect */ + } + + From 2995e3042a4b0044d19926da5d95295e1851ee91 Mon Sep 17 00:00:00 2001 From: Sayyad Aslam Date: Sat, 10 Aug 2024 15:33:18 +0530 Subject: [PATCH 5/8] Added CustomScrollbar in TermsOfService --- pages/termsofservice.html | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/pages/termsofservice.html b/pages/termsofservice.html index f4172fe..e4a2f96 100644 --- a/pages/termsofservice.html +++ b/pages/termsofservice.html @@ -27,6 +27,32 @@ font-size: 15px; } + ::-webkit-scrollbar { + width: 14px; + } + + ::-webkit-scrollbar-track { + background: linear-gradient(180deg, #d5d5ff, #9d9dff); /* Background color */ + border-radius: 10px; + } + + ::-webkit-scrollbar-thumb { + background: linear-gradient(180deg, #8000ff, #ffcc00, #0066ff); + border-radius: 10px; + border: 1px solid #ccccf7; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); + } + + ::-webkit-scrollbar-thumb:hover { + background: linear-gradient(180deg, #7e14e9, #f8d420, #3388ff); + box-shadow: 0 0 15px rgba(0, 0, 0, 0.7); + } + + ::-webkit-scrollbar-thumb:active { + background: linear-gradient(180deg, #6600cc, #ffbb00, #0044cc); /* Darker gradient on active */ + box-shadow: 0 0 20px rgba(0, 0, 0, 0.9); /* Intense glow effect */ + } + From 9659b045f23a94abeb4492312ba835e07c15da95 Mon Sep 17 00:00:00 2001 From: Sayyad Aslam Date: Sat, 10 Aug 2024 15:33:24 +0530 Subject: [PATCH 6/8] Added CustomScrollbar in FAQ --- pages/FAQs.html | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/pages/FAQs.html b/pages/FAQs.html index 6af8efe..7cbc20c 100644 --- a/pages/FAQs.html +++ b/pages/FAQs.html @@ -18,6 +18,35 @@ FAQs + From a5f56cd87c8b540f49c33a2683ad833254f434b4 Mon Sep 17 00:00:00 2001 From: Sayyad Aslam Date: Sat, 10 Aug 2024 15:35:16 +0530 Subject: [PATCH 7/8] Added CustomScrollbar in PrivacyPolicy --- pages/privacypolicy.html | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/pages/privacypolicy.html b/pages/privacypolicy.html index 5135f77..8af3dd7 100644 --- a/pages/privacypolicy.html +++ b/pages/privacypolicy.html @@ -25,6 +25,39 @@ #last-updated-date { font-size: 15px; } + + + ::-webkit-scrollbar { + width: 14px; + } + + + ::-webkit-scrollbar-track { + background: linear-gradient(180deg, #d5d5ff, #9d9dff); /* Background color */ + border-radius: 10px; + } + + + ::-webkit-scrollbar-thumb { + background: linear-gradient(180deg, #8000ff, #ffcc00, #0066ff); + border-radius: 10px; + border: 1px solid #ccccf7; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); + } + + + ::-webkit-scrollbar-thumb:hover { + background: linear-gradient(180deg, #7e14e9, #f8d420, #3388ff); + box-shadow: 0 0 15px rgba(0, 0, 0, 0.7); + } + + + ::-webkit-scrollbar-thumb:active { + background: linear-gradient(180deg, #6600cc, #ffbb00, #0044cc); /* Darker gradient on active */ + box-shadow: 0 0 20px rgba(0, 0, 0, 0.9); /* Intense glow effect */ + } + + From 1ac51460356e7805730b78ceda8d3aea8aaf0288 Mon Sep 17 00:00:00 2001 From: VijaySamant4368 Date: Sat, 10 Aug 2024 15:49:49 +0530 Subject: [PATCH 8/8] Corrected the page --- pages/about.html | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pages/about.html b/pages/about.html index 33c3f6f..2e32d2d 100644 --- a/pages/about.html +++ b/pages/about.html @@ -191,6 +191,16 @@

How to Play

+ + +