kier0
2/8/2015 - 8:54 PM

Custom Scroll Bars styled with CSS

Custom Scroll Bars styled with CSS

/* SCROLL BARS*/

.DIV-CLASS-NAME::-webkit-scrollbar-track {
	border-radius: 10px;
	background-color: transparent;
}


.DIV-CLASS-NAME::-webkit-scrollbar{
	width: 3px;
	background-color: transparent;
}
.DIV-CLASS-NAME::-webkit-scrollbar-thumb {
	border-radius: 2px;
	background-color: #698abb;
}