Skip to content

Instantly share code, notes, and snippets.

@jookyboi
Created March 11, 2013 18:30
Show Gist options
  • Save jookyboi/5136445 to your computer and use it in GitHub Desktop.
Save jookyboi/5136445 to your computer and use it in GitHub Desktop.
Custom webkit scrollbar styles. http://css-tricks.com/custom-scrollbars-in-webkit/
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment