From 32e7caa48b11fe95f8de1a0db21edffc14b5390c Mon Sep 17 00:00:00 2001 From: Laura Hausmann Date: Wed, 23 Jun 2021 21:05:28 +0200 Subject: [PATCH] Update css --- webmusic.css | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/webmusic.css b/webmusic.css index 652b821..be43c4c 100644 --- a/webmusic.css +++ b/webmusic.css @@ -53,3 +53,25 @@ li { .selected { color: #8cd8cd; } + + +/* Scrollbar colors */ +/* Works on Firefox */ +* { + scrollbar-width: thin; + scrollbar-color: #161616 grey; +} + +/* Works on Chrome, Edge, and Safari */ +*::-webkit-scrollbar { + width: 6px; +} + +*::-webkit-scrollbar-track { + background: #161616; +} + +*::-webkit-scrollbar-thumb { + background-color: grey; + border-radius: 20px; +} \ No newline at end of file