Scrollbars
by JQ Purfect
HTML
<div></div>
CSS
div{
height:2000px;
width:2000px;
}
::-webkit-scrollbar {
width: 10px;
height: 10px;
background:-webkit-linear-gradient(0, blue 50%, white 100%);
}
::-webkit-scrollbar-thumb {
background-color:#808080;
}