MediaWiki:Citizen.css

MediaWiki interface page

Note: After publishing, 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 / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* All CSS here will be loaded for users of the Citizen skin */
html {                  
    background-image: url(/mediawiki/skins/common/images/VampireSkullHalf.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 0 100px;
}
.faded {
	background-color:#FFF;
	opacity:0.9;
	filter:alpha(opacity=90);
}
.mw-body-content table {
	width: 100%;
}
.mw-body-content th { 
	color: #fff;
	background: #333;
	font-weight: bold;
}
.mw-body-content tr:nth-child(2n) {
	background: #EEE;
}

.toc ul {
	list-style-type: none;
}
.warning {
	padding-left: 40px;
	background: #FF6;
	border: .2em solid #FA0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	position: relative;
}
.warning:before {
	position: absolute;
	left: 15px;
	top: 15px;
	z-index: 100;
	font-weight: 800;
	content:"!";
	font-size: 30px;
	display: block;
	color: #F90;
}
.warning em {
	font-size: 140%;
	font-weight: 600;
}