Created
February 16, 2015 15:29
-
-
Save mittalabhas1/266a3c8855a8d2a17187 to your computer and use it in GitHub Desktop.
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; | |
background-color: transparent; | |
border-top-left-radius: 5px; | |
border-top-right-radius: 5px; | |
border-bottom-right-radius: 5px; | |
border-bottom-left-radius: 5px; | |
} | |
::-webkit-scrollbar-thumb { | |
background: #A1A0A0; | |
color: #FFF; | |
border-top-left-radius: 5px; | |
border-top-right-radius: 5px; | |
border-bottom-right-radius: 5px; | |
border-bottom-left-radius: 5px; | |
} | |
::-webkit-scrollbar-thumb:hover { | |
background: #7f7d7d; | |
} | |
::-webkit-scrollbar-thumb:active { | |
background: #A1A0A0; | |
} | |
::-webkit-scrollbar-track { | |
-webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3); | |
background-color: transparent; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment