Simple CSS Reset

by Kevin Pliester

CSS

/* Resets
-------------------------------------------------- */
html, body, * {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-oz-box-sizing: border-box;
	outline: none !important;
}

html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	overflow-x: hidden;
}

html {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #868686;
	line-height: 24px;
}