MediaWiki:Common.css/src/reset.scss

From Terraria Wiki
Jump to navigation Jump to search

This page is one of the SCSS pages which are the basis for MediaWiki:Common.css. After you edit this page, you will need to recompile them for your changes to take effect. See Terraria Wiki:CSS to learn more.

/***********************************************************************************************************
 * css reset for browser default rules and MediaWiki internal rules
 ***********************************************************************************************************/
*{
	outline: 0;
	//box-sizing: border-box;
	//&::before, &:after{
	//	box-sizing: border-box;
	//}
}
table{
	display: table;
	white-space: unset; /*<< be set to `nowrap` in MW internal css */
}
html{
	font-size: 16px; /*<< reset rem size */
}
body{
	overflow-y: unset;
}
body, code{
	background: none;
}
pre{
	margin: 0;
}
h1, h2, h3, h4, h5, h6{
	padding: 0;
	border: 0 solid transparent;
}