MediaWiki

Common.css

From Shadow Era Wiki

Revision as of 03:52, 1 July 2014 by Aphistos (Talk | contribs)

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Clear the cache in Tools → Preferences
/* 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);