Skip to content

Instantly share code, notes, and snippets.

@BBB
Created March 24, 2010 17:10
Show Gist options
  • Save BBB/342503 to your computer and use it in GitHub Desktop.
Save BBB/342503 to your computer and use it in GitHub Desktop.
html {
overflow: auto;
}
body {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 10px;
overflow-y: scroll;
overflow-x: hidden;
}
::-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: rgba(0, 0, 0, 0.1);
-webkit-border-radius: 4px;
}
::-webkit-scrollbar-thumb:vertical {
height: 50px;
background-color: rgba(0, 0, 0, 0.5);
-webkit-border-radius: 4px;
-webkit-transform: scale(1);
}
::-webkit-scrollbar-thumb:hover {
-webkit-transform: scale(1.2);
}
::-webkit-scrollbar-thumb:horizontal {
width: 50px;
background-color: rgba(0, 0, 0, 0.5);
-webkit-border-radius: 4px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment