Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // scroll bar controlling color changing for IE & chrome
- /*this is for chrom*/
- ::-webkit-scrollbar{width:9px;height:9px;}
- ::-webkit-scrollbar-button:start:decrement,
- ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:transparent;}
- ::-webkit-scrollbar-track-piece{background-color:blue;-webkit-border-radius:0;-webkit-border-bottom-right-radius:8px;-webkit-border-bottom-left-radius:8px;}
- ::-webkit-scrollbar-thumb:vertical{height:50px;background-color:red;-webkit-border-radius:8px;}
- ::-webkit-scrollbar-thumb:horizontal{width:50px;background-color:green;-webkit-border-radius:8px;}
- /*this is for IE*/
- html {
- scrollbar-face-color:red;
- scrollbar-shadow-color: #2D2C4D;
- scrollbar-highlight-color:#7D7E94;
- scrollbar-3dlight-color: #7D7E94;
- scrollbar-darkshadow-color: #2D2C4D;
- scrollbar-track-color: #7D7E94;
- scrollbar-arrow-color: #C1C1D1;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement