Donate via Flipcause one time or monthly
or become a
Patreon patron

Common.css: Difference between revisions

(Created page with "→‎CSS placed here will be applied to all skins: body { background-color: #c6b79a; }")
 
No edit summary
Line 2: Line 2:


body {
body {
  background-color: #c6b79a;
background: #c6b79a;
color: #1b1818;
margin: 0;
padding: 0;
border: 0;
background-repeat: repeat-x;
font-family: Trebuchet MS,sans-serif;
font-size: 12px;
line-height: 18px;
}
}

Revision as of 10:47, 11 November 2015

/* CSS placed here will be applied to all skins */

body {
	background: #c6b79a;
	color: #1b1818;
	margin: 0;
	padding: 0;
	border: 0;
	background-repeat: repeat-x; 
	font-family: Trebuchet MS,sans-serif; 
	font-size: 12px;
	line-height: 18px;
}