Created
September 6, 2014 09:09
-
-
Save yorkie/4bd99f3da6175beda897 to your computer and use it in GitHub Desktop.
Google Scrollbar Styles
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
::-webkit-scrollbar { | |
height: 15px; | |
width: 15px; | |
} | |
::-webkit-scrollbar-button { | |
height: 0; | |
width: 0; | |
} | |
::-webkit-scrollbar-thumb { | |
background-clip: padding-box; | |
background-color: rgba(0,0,0,.3); | |
border: 5px solid transparent; | |
border-radius: 10px; | |
min-height: 20px; | |
min-width: 20px; | |
height: 5px; | |
width: 5px; | |
} | |
::-webkit-scrollbar-thumb:hover, | |
::-webkit-scrollbar-thumb:active { | |
background-color:rgba(0,0,0,.4); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment