Skip to content

Instantly share code, notes, and snippets.

@achudars
Last active December 17, 2015 00:19
Show Gist options
  • Save achudars/5520443 to your computer and use it in GitHub Desktop.
Save achudars/5520443 to your computer and use it in GitHub Desktop.
Custom scrollbar
::-webkit-scrollbar {
width: 15px;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
background-color: #fff;
}
::-webkit-scrollbar-thumb {
border-radius: 5px;
-webkit-box-shadow: inset 1px 1px 6px rgba(0,0,0,0.7);
background-color: #d94625;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment