Created
July 1, 2013 07:35
-
-
Save wenjul/5898998 to your computer and use it in GitHub Desktop.
google scrollbar style
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{height:16px; width:16px;} | |
::-webkit-scrollbar-button{height:0; width:0;} | |
::-webkit-scrollbar-button:start:decrement, | |
::-webkit-scrollbar-button:end:increment{display:block;} | |
::-webkit-scrollbar-button:vertical:start:increment, | |
::-webkit-scrollbar-button:vertical:end:decrement{display:none;} | |
::-webkit-scrollbar-track:vertical, | |
::-webkit-scrollbar-track:horizontal, | |
::-webkit-scrollbar-thumb:vertical, | |
::-webkit-scrollbar-thumb:horizontal{border-style:solid; border-color:transparent;} | |
::-webkit-scrollbar-track:vertical{background-clip:padding-box; background-color:#fff; border-left-width:5px; border-right-width:0;} | |
::-webkit-scrollbar-track:horizontal{background-clip:padding-box; background-color:#fff; border-bottom-width:0; border-top-width:5px;} | |
::-webkit-scrollbar-thumb{-webkit-box-shadow:inset 1px 1px 0 rgba(0,0,0,.1), inset 0 -1px 0 rgba(0,0,0,.07); background-clip:padding-box; background-color:rgba(0,0,0,.2); min-height:28px;padding-top:100px} | |
::-webkit-scrollbar-thumb:hover{-webkit-box-shadow:inset 1px 1px 1px rgba(0,0,0,.25); background-color:rgba(0,0,0,.4);} | |
::-webkit-scrollbar-thumb:active{-webkit-box-shadow:inset 1px 1px 3px rgba(0,0,0,.35); background-color:rgba(0,0,0,.5);} | |
::-webkit-scrollbar-thumb:vertical{border-width:0; border-left-width:5px;} | |
::-webkit-scrollbar-thumb:horizontal{border-width:0; border-top-width:5px;} | |
::-webkit-scrollbar-track:hover{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.1); background-color:rgba(0,0,0,.05);} | |
::-webkit-scrollbar-track:active{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.14), inset -1px -1px 0 rgba(0,0,0,.07); background-color:rgba(0,0,0,.05);} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment