diff options
| author | Unknown <Alee14498@gmail.com> | 2017-10-01 00:24:20 -0400 |
|---|---|---|
| committer | Unknown <Alee14498@gmail.com> | 2017-10-01 00:24:20 -0400 |
| commit | 78f3c0e9893d36e0ce039c2b79ede8a92ebe468a (patch) | |
| tree | 8479930f9372a1e9998b6750651565cf52b81ca8 /desktop/css/scrollbar.css | |
| parent | d8ba59582c137de474789690e777d8c029e08fe6 (diff) | |
| download | windows8online-78f3c0e9893d36e0ce039c2b79ede8a92ebe468a.tar.gz windows8online-78f3c0e9893d36e0ce039c2b79ede8a92ebe468a.tar.bz2 windows8online-78f3c0e9893d36e0ce039c2b79ede8a92ebe468a.zip | |
Adding the code
Diffstat (limited to 'desktop/css/scrollbar.css')
| -rw-r--r-- | desktop/css/scrollbar.css | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/desktop/css/scrollbar.css b/desktop/css/scrollbar.css new file mode 100644 index 0000000..ca573bd --- /dev/null +++ b/desktop/css/scrollbar.css @@ -0,0 +1,67 @@ +/* +Windows 8 Scrollbar CSS +by ntim007 +http://ntim007.kodingen.com +http://ntim007.deviantart.com +*/ +/* For Chrome or Safari */ +/* Scrollbar background color */ +::-webkit-scrollbar { +background-color:#EFEFEF; +padding:0; +} +/* UP, DOWN, LEFT and RIGHT button styling */ +::-webkit-scrollbar-button:hover { +background-color:#DBDBDB !important; +} +::-webkit-scrollbar-button:vertical:decrement { +background:url('../img/scrollbar/up.png') no-repeat center; +} +::-webkit-scrollbar-button:vertical:increment { +background:url('../img/scrollbar/down.png') no-repeat center; +} +::-webkit-scrollbar-button:horizontal:decrement { +background:url('../img/scrollbar/left.png') no-repeat center; +} +::-webkit-scrollbar-button:horizontal:increment { +background:url('../img/scrollbar/right.png') no-repeat center; +} +::-webkit-scrollbar-button:active:vertical:decrement { +background:url('../img/scrollbar/up-active.png') no-repeat center #606060 !important; +} +::-webkit-scrollbar-button:active:vertical:increment { +background:url('../img/scrollbar/down-active.png') no-repeat center #606060 !important; +} +::-webkit-scrollbar-button:active:horizontal:decrement { +background:url('../img/scrollbar/left-active.png') no-repeat center #606060 !important; +} +::-webkit-scrollbar-button:active:horizontal:increment { +background:url('../img/scrollbar/right-active.png') no-repeat center #606060 !important; +} +/* Scrollbar thumb */ +::-webkit-scrollbar-thumb { +background-color:#CDCDCD; + +} +::-webkit-scrollbar-thumb:hover { +background-color:#A6A6A6; + +} +::-webkit-scrollbar-thumb:active { +background-color:#606060; + +} +/* Some unstyled stuff */ +::-webkit-scrollbar-track { + +} +::-webkit-scrollbar-track-piece { + +} + +::-webkit-scrollbar-corner { + +} +::-webkit-resizer { + +}
\ No newline at end of file |
