MediaWiki

Difference between revisions of "Common.css"

From Shadow Era Wiki

(Replaced content with "CSS placed here will be applied to all skins: ")
Line 1: Line 1:
 
/* CSS placed here will be applied to all skins */
 
/* CSS placed here will be applied to all skins */
 +
/* Fallback color in case background-image is broken or not supported */
 +
background-color: #444444;
 +
/* Safari 4+, Chrome 2, iOS 2 */
 +
background-image: -webkit-gradient(linear, left top, left bottom, from(#444444), to(#999999));
 +
/* Safari 5.1+, Chrome 10+, iOS 5 */
 +
background-image: -webkit-linear-gradient(top, #444444, #999999);
 +
/* Firefox 3.6 - 15 */
 +
background-image: -moz-linear-gradient(top, #444444, #999999);
 +
/* Opera 11.10 - 12.5 */
 +
background-image: -o-linear-gradient(top, #444444, #999999);
 +
/* Standard (Firefox 16+, Opera 12.5+, IE10) */
 +
background-image: linear-gradient(to bottom, #444444, #999999);

Revision as of 03:53, 1 July 2014

/* CSS placed here will be applied to all skins */
/* Fallback color in case background-image is broken or not supported */
	background-color: #444444;
	/* Safari 4+, Chrome 2, iOS 2 */
	background-image: -webkit-gradient(linear, left top, left bottom, from(#444444), to(#999999));
	/* Safari 5.1+, Chrome 10+, iOS 5 */
	background-image: -webkit-linear-gradient(top, #444444, #999999);
	/* Firefox 3.6 - 15 */
	background-image: -moz-linear-gradient(top, #444444, #999999);
	/* Opera 11.10 - 12.5 */
	background-image: -o-linear-gradient(top, #444444, #999999);
	/* Standard (Firefox 16+, Opera 12.5+, IE10) */
	background-image: linear-gradient(to bottom, #444444, #999999);