Skip to content

Instantly share code, notes, and snippets.

@oumu
Created July 13, 2014 01:39
Show Gist options
  • Select an option

  • Save oumu/ad5a7aa1fc78ffb3ec2b to your computer and use it in GitHub Desktop.

Select an option

Save oumu/ad5a7aa1fc78ffb3ec2b to your computer and use it in GitHub Desktop.
Minimal scrollbar
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
display: block;
height: 10px;
}
::-webkit-scrollbar-button:vertical:increment {
background-color: #fff;
}
::-webkit-scrollbar-track-piece {
background-color: #eee;
-webkit-border-radius: 3px;
}
::-webkit-scrollbar-thumb:vertical {
height: 50px;
background-color: #ccc;
-webkit-border-radius: 3px;
}
::-webkit-scrollbar-thumb:horizontal {
width: 50px;
background-color: #ccc;
-webkit-border-radius: 3px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment