From 1764718c5a621a5d7c6cfeba0c028f85068db312 Mon Sep 17 00:00:00 2001 From: Keith Irwin Date: Mon, 25 Apr 2016 07:31:37 +0000 Subject: [PATCH] fancy scrollbar --- static/css/base.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/static/css/base.css b/static/css/base.css index eb1d938..3ef38d5 100644 --- a/static/css/base.css +++ b/static/css/base.css @@ -1,6 +1,15 @@ /* Resets, Clears & Defaults */ *, *:after, *:before { box-sizing: border-box; +}::-webkit-scrollbar { + width: 5vw; + min-width:10px; + max-width:40px; +}::-webkit-scrollbar-track { + background-color: #000; +}::-webkit-scrollbar-thumb { + border-radius: 1vw; + background: #333; } body {