Skip to content

Instantly share code, notes, and snippets.

@pstoev
Created March 27, 2014 14:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pstoev/9809393 to your computer and use it in GitHub Desktop.
Save pstoev/9809393 to your computer and use it in GitHub Desktop.
/*#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