Skip to content

Instantly share code, notes, and snippets.

@Arinerron
Last active October 10, 2016 07:16
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Arinerron/94fdf5d087eb804f7d9178c2b6ddf833 to your computer and use it in GitHub Desktop.
Save Arinerron/94fdf5d087eb804f7d9178c2b6ddf833 to your computer and use it in GitHub Desktop.
custom scrollbar for @zacharyvincze's amazing user-friendly forum
::-webkit-scrollbar {
width: 13px;
height: 13px;
}
::-webkit-scrollbar-button {
width: 0px;
height: 0px;
}
::-webkit-scrollbar-thumb {
background: #c12d30;
border: 0px none #ffffff;
border-radius: 0px;
}
::-webkit-scrollbar-thumb:hover {
background: #c12d30;
}
::-webkit-scrollbar-thumb:active {
background: #c12d30;
}
::-webkit-scrollbar-track {
background: #ff3b3f;
border: 0px none #ffffff;
border-radius: 0px;
}
::-webkit-scrollbar-track:hover {
background: #ff3b3f;
}
::-webkit-scrollbar-track:active {
background: #ff3b3f;
}
::-webkit-scrollbar-corner {
background: transparent;
}
@Arinerron
Copy link
Author

Not sure how it looks against background to other people though. Opinions?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment