From 11ac990d0182988f30667636bb0bbe5c7e3be6f4 Mon Sep 17 00:00:00 2001 From: sau-mili <146661411+sau-mili@users.noreply.github.com> Date: Wed, 12 Jun 2024 23:52:23 +0530 Subject: [PATCH] Scrollbar updated --- index.html | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index b2a6d8b3..e1f51d04 100644 --- a/index.html +++ b/index.html @@ -165,7 +165,35 @@ padding: 0 10px; display: block; margin-bottom: 10px; - } + } + +::-webkit-scrollbar-track +{ + -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1); + background-color: #F5F5F5; + border-radius: 10px; +} + +::-webkit-scrollbar +{ + width: 10px; + background-color: #F5F5F5; +} + +::-webkit-scrollbar-thumb +{ + border-radius: 10px; + background-color: #FFF; + background-image: -webkit-gradient(linear, + 40% 0%, + 75% 84%, + from(#f96007), + to(#ffcd05), + color-stop(.6,#ff8c00)) +} + + +