Skip to content

Instantly share code, notes, and snippets.

@scq000
Created February 8, 2017 06:59
Show Gist options
  • Save scq000/05b6ba111136cefe5e08850506d43d09 to your computer and use it in GitHub Desktop.
Save scq000/05b6ba111136cefe5e08850506d43d09 to your computer and use it in GitHub Desktop.
::-webkit-scrollbar {
overflow: visible;
width: 6px;
height: 16px
}
::-webkit-scrollbar-button {
width: 0;
height: 0
}
::-webkit-scrollbar-thumb {
min-height: 28px;
padding: 100px 0 0;
border: solid transparent;
border-width: 1px;
background-color: rgba(138,153,170,.6);
background-clip: padding-box;
border-radius: 3px
}
::-webkit-scrollbar-thumb:horizontal {
padding: 0 0 0 100px;
border-width: 6px 1px 1px
}
::-webkit-scrollbar-thumb:hover {
background-color: rgba(138,153,170,.8)
}
::-webkit-scrollbar-thumb:active {
background-color: rgba(138,153,170,1)
}
::-webkit-scrollbar-corner {
background: transparent
}
::-webkit-scrollbar-track-piece {
background-color: transparent
}
::-webkit-scrollbar-track {
background-color: transparent
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment