/* Base font size : 12pt (16px), the canonical comfortable reading base ;
   every size in the stylesheet is em-based and scales from here */
html {
	font-size : 12pt ;
}

/* Scrollbar : minimal dark thumb, invisible track */
::-webkit-scrollbar {
	width : 10px ;
	height : 10px ;
}

::-webkit-scrollbar-track {
	background : transparent ;
}

::-webkit-scrollbar-thumb {
	background : #4A4A52 ;
	border : 3px solid transparent ;
	border-radius : 20px ;
	background-clip : content-box ;
}
	::-webkit-scrollbar-thumb:hover {
		background-color : #6E6E78 ;
	}

::-webkit-scrollbar-corner {
	background : transparent ;
}

/* Firefox (and other browsers without ::-webkit-scrollbar support) */
@supports not selector(::-webkit-scrollbar) {
	html {
		scrollbar-width : thin ;
		scrollbar-color : #4A4A52 transparent ;
	}
}
