Difference between revisions of "MediaWiki:Common.css"

From CWRE
Jump to navigation Jump to search
(lighter)
(hopefully, that really belongs in Print.css)
Line 20: Line 20:
 
color: #888;
 
color: #888;
 
text-decoration:line-through;
 
text-decoration:line-through;
}
 
 
/* De-emphasizing page names so subpages can have nicer titles */
 
 
div#content #firstHeading {
 
    font-size: 12pt;
 
    font-color: #aaa;
 
 
}
 
}

Revision as of 23:21, 30 March 2016

/* CSS placed here will be applied to all skins */
table.listing {
	border: 1px solid black;
	background: radial-gradient(yellow, green);
	box-shadow: 5px 5px 3px 1px #999;
}
table.listing tr th {
	background: #aaf;
}
table.listing tr td {
	background: white;
}
table.listing tr.odd td {
	background: #eef;
}
table.listing tr.even td {
	background: #fff;
}
table.listing tr.void td {
	color: #888;
	text-decoration:line-through;
}