Created
July 4, 2018 20:04
-
-
Save natterstefan/d294080bd0dee372cca03a81fa5c25c9 to your computer and use it in GitHub Desktop.
CSS: vertical scrollbar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* width */ | |
::-webkit-scrollbar { | |
width: 5px; | |
border: 1px solid #d5d5d5 | |
} | |
/* Track */ | |
::-webkit-scrollbar-track { | |
background: #f1f1f1; | |
} | |
/* Handle */ | |
::-webkit-scrollbar-thumb { | |
background: #3f51b5; | |
} | |
/* Handle on hover */ | |
::-webkit-scrollbar-thumb:hover { | |
background: #555; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment