Created
July 13, 2014 01:39
-
-
Save oumu/ad5a7aa1fc78ffb3ec2b to your computer and use it in GitHub Desktop.
Minimal scrollbar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ::-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