Difference between revisions of "MediaWiki:Common.css"

From The Coppermind
Jump to navigation Jump to search
m (try that)
m
Line 47: Line 47:
 
/* Notes section */
 
/* Notes section */
 
.notes { clear: both; }
 
.notes { clear: both; }
  +
  +
/* keep long references in blocks */
  +
.references li { display: inline-block; }
   
 
/* Edit page Templates Used*/
 
/* Edit page Templates Used*/

Revision as of 17:22, 28 March 2013

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

/* Information Boxes */
table.infobox{ border: 1px solid #aaa; border-spacing: 1; background-color: white; }

.infobox td, .infobox th { padding: 4px; }
.infobox th { background-color: #ddddff; white-space: nowrap; }
.infobox tr.title th, .infobox th.title { color: black; background-color: #ccccff; text-align: center; }
.infobox td { text-align: left; }

/* Notice */
div.notice{ text-align: center; margin: auto; width: 60%; padding: 0.5em; }
div.notice.stub { font-style:italic; }
img.notice { width: 1em; }

/* curved */
.curved {
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	-icab-border-radius: 10px;
	-o-border-radius: 10px;
}
.tl { border-top-left-radius:10px; -moz-border-radius-topleft: 10px; }
.tr { border-top-right-radius:10px; -moz-border-radius-topright: 10px; }
.bl { border-bottom-left-radius:10px; -moz-border-radius-bottomleft: 10px; }
.br { border-bottom-right-radius:10px; -moz-border-radius-bottomright: 10px; }

/* quotes */
blockquote.source { margin-right:0; }

/* navigation */
.navaid{ display: block; margin: 1em 40px; font-style: italic; }
.catlinks { padding-top: 0.5em; }
#p-cactions li.selected a { color: #061626; }

/* Collapsible tables http://www.mediawiki.org/wiki/Manual:Collapsible_tables */
table.collapsed tr.collapsible { display: none; }
.collapseButton { float: right; font-weight: normal; text-align: right; width: auto; }

/* slimmer footer*/
#footer-info-lastmod { float: left; }
#footer-info-viewcount { float: right; }
#footer-places { clear: both; }

/* Notes section */
.notes { clear: both; }

/* keep long references in blocks */
.references li { display: inline-block; }

/* Edit page Templates Used*/
.templatesUsed ul {-moz-column-count: 5; -webkit-column-count: 5; column-count: 5; }