Skip to content

Instantly share code, notes, and snippets.

@adamblank
Created December 10, 2013 19:36
Show Gist options
  • Save adamblank/7896758 to your computer and use it in GitHub Desktop.
Save adamblank/7896758 to your computer and use it in GitHub Desktop.
webkit styled minimalist gray scrollbar
::-webkit-scrollbar{
width: 10px;
}
::-webkit-scrollbar-track-piece{
background-color: #FFF;
}
::-webkit-scrollbar-thumb{
background-color: #CBCBCB;
outline: 2px solid #FFF;
outline-offset: -2px;
border: .1px solid #B7B7B7;
}
::-webkit-scrollbar-thumb:hover{
background-color: #909090;
}
@ArminShaikhy
Copy link

nice

@IlyaIzr
Copy link

IlyaIzr commented Jul 11, 2023

usefull, thanks

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