From fc55de818cea8355c359affd9d05fd4be8bc6f85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Rynning-T=C3=B8nnesen?= Date: Sat, 23 May 2015 16:11:00 +0200 Subject: [PATCH] Custom scrollbar on chrome because I like it --- static/css/style.css | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/static/css/style.css b/static/css/style.css index 485757a1..4df15bbd 100755 --- a/static/css/style.css +++ b/static/css/style.css @@ -10,6 +10,27 @@ /* GLOBAL STYLES */ + +::-webkit-scrollbar-track +{ + background-color: lightgrey; + border-radius:0px; +} + +::-webkit-scrollbar +{ + width: 4px; + background-color: lightgrey; + border-radius:0px; +} + +::-webkit-scrollbar-thumb +{ + background-color: #3E3E3E; + border-radius:0px; +} + + body { display: flex; min-height: 100vh;