Created
March 27, 2014 14:57
-
-
Save pstoev/9809393 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
/*#region ScrollBar Styles */ | |
::-webkit-scrollbar { | |
width: 10px; | |
height: 10px; | |
} | |
::-webkit-scrollbar-track { | |
background-color: rgba(113, 112, 107, 0.2); | |
} | |
::-webkit-scrollbar-thumb:vertical { | |
background-color: rgba(0, 0, 0, 0.2); | |
} | |
::-webkit-scrollbar-thumb:vertical:hover, | |
::-webkit-scrollbar-thumb:horizontal:hover { | |
background: white; | |
} | |
::-webkit-scrollbar-thumb:horizontal { | |
background-color: rgba(0, 0, 0, 0.2); | |
} | |
/*#endregion ScrollBar Styles*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment