Created
July 8, 2011 19:58
-
-
Save bengold/1072686 to your computer and use it in GitHub Desktop.
VHX Scrollbar
This file contains 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: 10px; | |
} | |
::-webkit-scrollbar-track:vertical { | |
background: url(http://f.cl.ly/items/3X2R0L3G1h0b1n0q1N1O/fade_right.png) repeat-y; | |
} | |
::-webkit-scrollbar-thumb:vertical { | |
background: #000 url(http://f.cl.ly/items/1S340Q1i1s3s0K332N1k/thumb.png) center no-repeat; | |
border-left-color: #fff; | |
border-left-style: solid; | |
border-left-width: 1px; | |
} | |
::-webkit-scrollbar-thumb:vertical:hover { | |
background: #d81965 url(http://f.cl.ly/items/2G2v3N170A3J2Z0H1526/hover_thumb.png) center no-repeat; | |
border-left-color: #fff; | |
border-left-style: solid; | |
border-left-width: 1px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment