Last active
April 7, 2017 09:24
-
-
Save think2011/c86ed535f812e6eff60b76ee5cabb3c4 to your computer and use it in GitHub Desktop.
os x style scroller
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 { | |
width: 6px; | |
height: 8px; | |
} | |
::-webkit-scrollbar-track { | |
-webkit-border-radius: 5px; | |
border-radius: 5px; | |
background: rgba(0, 0, 0, 0.1); | |
} | |
::-webkit-scrollbar-thumb { | |
-webkit-border-radius: 5px; | |
border-radius: 5px; | |
background: rgba(0, 0, 0, 0.2); | |
} | |
::-webkit-scrollbar-thumb:hover { | |
background: rgba(0, 0, 0, 0.4); | |
} | |
::-webkit-scrollbar-thumb:window-inactive { | |
background: rgba(0, 0, 0, 0.05); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment