From 78f3c0e9893d36e0ce039c2b79ede8a92ebe468a Mon Sep 17 00:00:00 2001 From: Unknown Date: Sun, 1 Oct 2017 00:24:20 -0400 Subject: Adding the code --- start/scrollbar.css | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 start/scrollbar.css (limited to 'start/scrollbar.css') diff --git a/start/scrollbar.css b/start/scrollbar.css new file mode 100644 index 0000000..ea894b2 --- /dev/null +++ b/start/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('images/scrollbar/up.png') no-repeat center; +} +::-webkit-scrollbar-button:vertical:increment { +background:url('images/scrollbar/down.png') no-repeat center; +} +::-webkit-scrollbar-button:horizontal:decrement { +background:url('images/scrollbar/left.png') no-repeat center; +} +::-webkit-scrollbar-button:horizontal:increment { +background:url('images/scrollbar/right.png') no-repeat center; +} +::-webkit-scrollbar-button:active:vertical:decrement { +background:url('images/scrollbar/up-active.png') no-repeat center #606060 !important; +} +::-webkit-scrollbar-button:active:vertical:increment { +background:url('images/scrollbar/down-active.png') no-repeat center #606060 !important; +} +::-webkit-scrollbar-button:active:horizontal:decrement { +background:url('images/scrollbar/left-active.png') no-repeat center #606060 !important; +} +::-webkit-scrollbar-button:active:horizontal:increment { +background:url('images/scrollbar/right-active.png') no-repeat center #606060 !important; +} +/* Scrollbar thumb */ +::-webkit-scrollbar-thumb { +background-color:#CDCDCD; +opacity: 1; +} +::-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 -- cgit v1.2.3