« Back to Index

Custom Scrollbars (WebKit only because no other browser has similar feature)

View original Gist on GitHub

custom-scrollbars.css

// See also: http://css-tricks.com/custom-scrollbars-in-webkit/

::-webkit-scrollbar {
	background-color: #333;
	height:13px;
	width:13px;
}

::-webkit-scrollbar-button {
	display: none;
}

::-webkit-scrollbar-thumb {
	background: url(scrollbar-track.png) left top repeat-y #EC008C;
	-webkit-border-radius: 5px;
	border-radius: 7px;
}