MediaWiki:Common.css

From The Coppermind
Revision as of 06:33, 15 May 2012 by Fbstj (talk | contribs) (remove td.width=10%)
Jump to navigation Jump to search

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 / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
/* CSS placed here will be applied to all skins */

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

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

.infobox table { text-align: center; }

.infotable td { font-size: smaller; }

/* Notice */
div.notice{ text-align: center; margin: auto; width: 50%; padding: 0.5em; }

/* 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
 *
 *  Description: Allows tables to be collapsed, showing only the header. See
 *                         http://www.mediawiki.org/wiki/Manual:Collapsible_tables.
 *  Maintainers: [[en:User:R. Koot]]
 */
 
table.collapsed tr.collapsible {
	display: none;
}
 
.collapseButton {
	float: right;
	font-weight: normal;
	text-align: right;
	width: auto;
}