Difference between revisions of "MediaWiki:Common.css"

From TBSPedia
Jump to: navigation, search
Line 1: Line 1:
/** <pre><nowiki> */
+
/*
/***** BACKGROUND COLORS FOR NAMESPACES *****/
+
ATTENTION ADMINISTRATORS:
 
+
  /* Colour of pseudo NS Special (light grey) */
+
 
   
 
   
.ns--2 #content, .ns--2 #p-cactions li, .ns--2 #p-cactions li a { background: #f4f4f4; }
+
This is the CSS for all skins. Any major changes to this page or
.ns--2 div.thumb { border-color: #f4f4f4; }
+
[[MediaWiki:Monobook.css|Monobook.css]] should be first proposed on
 
+
the [[Wikipedia:Village pump (technical)|Village pump]]. 
/* Colour of NS Project + Project_talk (light sky blue) */
+
 
   
 
   
.ns-4 #content, .ns-4 #p-cactions li, .ns-4 #p-cactions li a { background: #f8fcff; }
+
Furthermore, changes should probably be made in [[MediaWiki:Common.css]]
.ns-4 div.thumb { border-color: #f8fcff; }
+
rather than this page.
 
   
 
   
.ns-5 #content, .ns-5 #p-cactions li, .ns-5 #p-cactions li a { background: #f8fcff; }
+
Testing can be done on your own user Monobook.css. In [[Mozilla]] and
  .ns-5 div.thumb { border-color: #f8fcff; }
+
[[Opera (web browser)|Opera]], you can also test style changes dynamically
 +
with the [http://www.squarefree.com/bookmarklets/webdevel.html test styles]
 +
bookmarklet from squarefree.com. It pops up a window for adding style rules,
 +
and updates the page as you type.
 +
   
 +
Always check with the [http://tinyurl.com/28y334 W3C CSS Validation Service]
 +
([http://tinyurl.com/2g8bsk CVS version]) after any changes.
  
/* Colour of NS MediaWiki + MediaWiki_talk (light grey) */
+
See also: [[Wikipedia:Catalogue of CSS classes|catalogue of CSS classes]].
 
   
 
   
.ns-8 #content, .ns-8 #p-cactions li, .ns-8 #p-cactions li a { background: #f4f4f4; }
+
Thank you.
.ns-8 div.thumb { border-color: #f4f4f4; }
+
*/
 
   
 
   
.ns-9 #content, .ns-9 #p-cactions li, .ns-9 #p-cactions li a { background: #f4f4f4; }
+
/* <pre><nowiki> */
.ns-9 div.thumb { border-color: #f4f4f4; }
+
 
+
/* Blue border for Public Domain namespaces.  This is currently NS Help (but NOT Help_talk) */
+
 
   
 
   
.ns-12 #content {  
+
/* Main page fixes */
     border: 2px solid #0000CC; border-right: none;  
+
#interwiki-completelist {
 +
     font-weight: bold;
 +
}
  
    background-image: url(http://upload.wikimedia.org/wikipedia/mediawiki/b/b8/PD-banner.png);
+
/* Add space below the toolbar */
    background-repeat: no-repeat;
+
#toolbar {
     background-position: right top;
+
     margin-bottom: 6px;
  }
+
}
  
  .ns-12 #bodyContent {
+
/* make the list of references look smaller */
    background-image: url(http://upload.wikimedia.org/wikipedia/mediawiki/6/67/PD-icon-faded.png);
+
ol.references {
    background-repeat: no-repeat;
+
     font-size: 100%;
     background-position: right 5em;
+
}
  }
+
  
/* Colour of NS Manual + Manual_talk (light bluish violet) */
+
.references-small { font-size: 90%;}
+
.ns-100 #content, .ns-100 #p-cactions li, .ns-100 #p-cactions li a { background: #f3f3ff; }
+
.ns-100 div.thumb { border-color: #f3f3ff; }
+
+
.ns-101 #content, .ns-101 #p-cactions li, .ns-101 #p-cactions li a { background: #f3f3ff; }
+
.ns-101 div.thumb { border-color: #f3f3ff; }
+
  
/***** BACKGROUND AND BORDER COLORS FOR CONTENT  *****/
+
/* VALIDATOR NOTICE: the following is correct, but the W3C validator doesn't accept it */
 +
/* -moz-* is a vendor-specific extension (CSS 2.1 4.1.2.1) */
 +
/* column-count is from the CSS3 module "CSS Multi-column Layout" */
 +
/* Please ignore any validator errors caused by these two lines */
 +
.references-2column {
 +
    font-size: 90%;
 +
    -moz-column-count:2;
 +
    -webkit-column-count:2;
 +
    column-count:2;
 +
}
  
/* Border colors */
+
.same-bg { background: none }
+
.borderc1 { border-color: #e9e9e9; border-width:thin; }  /* light grey */
+
+
.borderc2 { border-color: #aaaaaa; border-width:thin; }  /* grey (as toc) */
+
+
.borderc3 { border-color: #777777; border-width:thin; }  /* dark grey */
+
+
.borderc4 { border-color: #000000; border-width:thin; }  /* black */
+
+
.borderc5 { border-color: #c00000; border-width:thin; }  /* red */
+
 
+
.borderc6 { border-color: #025e9d; border-width:thin; }  /* blue */
+
 
+
.borderc7 { border-color: #008040; border-width:thin; }  /* green */
+
+
.borderc8 { border-color: #ffcc00; border-width:thin; } /* yellow */
+
  
/* Background colors */
+
/* Highlight clicked reference in blue to help navigation */
+
ol.references > li:target {
.backgroundc1 { background-color: #ffffff; }  /* white */
+
    background-color: #DEF;
+
}
.backgroundc2 { background-color: #f9f9f9; }  /* light grey (as toc)  */
+
+
.backgroundc3 { background-color: #eeeeee; }  /* light grey (headers) */
+
+
.backgroundc4 { background-color: #e0e0e0; } /* more grey */
+
+
.backgroundc5 { background-color: #d2d2d2; }  /* more grey */
+
+
.backgroundc6 { background-color: #b7b7b7; }  /* more grey */
+
+
.backgroundc7 { background-color: #a3a3a3; }  /* darker grey */
+
  
/***** SOME OTHER SMALL THINGS *****/
+
sup.reference:target {
 +
    background-color: #DEF;
 +
}
  
/* Marking redirects in Special:Allpages  */
+
/* Styling for citations */
+
cite {
.allpagesredirect { font-style: italic; }
+
    font-style: normal;
+
    word-wrap: break-word;
.watchlistredir { font-style: italic; }
+
}
  
/* Bug 1583 Printing of thumbnails */
+
/* If there is an inline link to a full citation, the full citation will turn blue when the inline link is clicked */
+
cite:target {  
div.tright { clear: right; }
+
    background-color: #DEF;
 +
}
  
/* SideBoxes ([[:de:Wikipedia:TownBox|TB]]) */
+
/* Do not expand URLs within citations for printing. The URLs should be included explicitly, to avoid confusion */
+
div.sideBox {
+
position: relative;
+
float: right;
+
background: white;
+
margin-left: 1em;
+
border: 1px solid gray;
+
padding: 0.3em;
+
width: 200px;
+
overflow: hidden;
+
clear: right;
+
}
+
div.sideBox dl {
+
padding: 0;
+
margin: 0 0 0.3em 0;
+
font-size: 96%;
+
}
+
div.sideBox dl dt {
+
background: none;
+
margin: 0.4em 0 0 0;
+
}
+
div.sideBox dl dd {
+
margin: 0.1em 0 0 1.1em;
+
background-color: #f3f3f3;
+
}
+
  
/* Major warning - used on the main page template to warn against editing carelessly, but can be used elsewhere as well */
+
@media print {
.majorwarning {
+
    #content cite a.external.text:after {
  background: yellow;
+
        display: none;
  padding: 0.3em;
+
    }
  text-align: center;
+
  font-size: 125%;  
+
  border: 2px solid red;
+
 
}
 
}
  
/******* MAIN PAGE STYLING **********/
+
/* For linked citation numbers and document IDs, where the number need not be shown on a screen or a handheld, but should be included in the printed version */
  
#mainpage_topbox {
+
@media screen, handheld, projection {
  background: #f9f9f9;
+
    cite *.printonly {
  padding: 0px;  
+
        display: none;
  border: 1px solid #aaaaaa;
+
    }
  margin: 0.2em 10px 10px;
+
 
}
 
}
  
.mainpage_boxtitle, .mainpage_hubtitle, #mainpage_pagetitle {
+
/* wikitable/prettytable class for skinning normal tables */
  font-size: 105%;
+
table.wikitable,
  padding: 0.4em;  
+
table.prettytable {
  background-color: #eeeeee;  
+
    margin: 1em 1em 1em 0;
  border-bottom: 1px solid #aaaaaa;  
+
    background: #f9f9f9;
 +
    border: 1px #aaa solid;
 +
    border-collapse: collapse;
 +
}
  
 +
table.wikitable th, table.wikitable td,
 +
table.prettytable th, table.prettytable td {
 +
    border: 1px #aaa solid;
 +
    padding: 0.2em;
 
}
 
}
  
.mainpage_boxtitle {
+
table.wikitable th,
  line-height: 120%;
+
table.prettytable th {
 +
    background: #f2f2f2;
 +
    text-align: center;
 
}
 
}
  
#mainpage_pagetitle {
+
table.wikitable caption,
  color: #cf7606;  
+
table.prettytable caption {
  font-size: 200% !important;
+
    margin-left: inherit;
 +
    margin-right: inherit;
 +
    font-weight: bold;
 
}
 
}
  
#mainpage_sitelinks {
+
table.prettytable code,
  padding: 0.2em;
+
table.wikitable code {
  text-align: center;
+
    background-color: transparent;
  background-color: white;
+
 
}
 
}
.mainpage_hubtitle {
+
 
  text-align: center;
+
/* default skin for navigation boxes */
 +
table.navbox {
 +
    background-color: #f9f9f9;
 +
    border: 1px solid #aaa;
 +
    clear: both;
 +
    font-size: 90%;
 +
    margin: 1em 0em 0em;
 +
    padding: 2px;
 +
    text-align: center;
 +
    width: 100%;
 
}
 
}
  
.mainpage_boxcontents, .mainpage_boxcontents_small {
+
table.navbox th {
  background: #ffffff;
+
    background-color: #ccf;
  padding:0.2em 0.4em;
+
    padding-left: 1em;
 +
    padding-right: 1em;
 
}
 
}
  
.mainpage_boxcontents_small {
+
@media print {
  font-size: 95%;
+
    .navbox {
 +
        display: none;
 +
    }
 
}
 
}
  
.mainpage_hubbox, #mainpage_newscell, #mainpage_downloadcell {
+
/* Infobox template style */
  padding: 0;
+
.infobox {
  border: 1px solid #aaaaaa;
+
    border: 1px solid #aaa;
 +
    background-color: #f9f9f9;
 +
    color: black;
 +
    margin-bottom: 0.5em;
 +
    margin-left: 1em;
 +
    padding: 0.2em;
 +
    float: right;
 +
    clear: right;
 +
}
 +
.infobox td,
 +
.infobox th {
 +
    vertical-align: top;
 +
}
 +
.infobox caption {
 +
    font-size: larger;
 +
    margin-left: inherit;
 +
}
 +
.infobox.bordered {
 +
    border-collapse: collapse;
 +
}
 +
.infobox.bordered td,
 +
.infobox.bordered th {
 +
    border: 1px solid #aaa;
 +
}
 +
.infobox.bordered .borderless td,
 +
.infobox.bordered .borderless th {
 +
    border: 0;
 
}
 
}
  
.mainpage_hubbox {
+
.infobox.sisterproject {
  margin-bottom: 0;
+
    width: 20em;
 +
    font-size: 90%;
 
}
 
}
  
#mainpage_newscell {
+
@media print {
  margin-bottom: 15px;
+
    .infobox.sisterproject {
  margin-top: 0 !important;
+
        display: none;
 +
    }
 
}
 
}
  
#mainpage_newscell .mainpage_boxtitle {
+
/* styles for bordered infobox with merged rows */
    background-image: url(http://upload.wikimedia.org/wikipedia/commons/thumb/8/89/Exquisite-khelpcenter.png/20px-Exquisite-khelpcenter.png);
+
.infobox.bordered .mergedtoprow td,
     background-repeat: no-repeat;
+
.infobox.bordered .mergedtoprow th {
     background-position: 99% 0.3em;
+
     border: 0;
     padding-right: 25px;
+
     border-top: 1px solid #aaa;
 +
     border-right: 1px solid #aaa;
 
}
 
}
  
#mainpage_downloadcell {
+
.infobox.bordered .mergedrow td,
  width: 17em;  
+
.infobox.bordered .mergedrow th {
  margin-bottom: 5px;  
+
    border: 0;
 +
    border-right: 1px solid #aaa;
 
}
 
}
  
#mainpage_downloadcell .mainpage_boxtitle {
+
/* Styles for geography infoboxes, e.g. countries, country subdivisions, cities, etc. */
     background-image: url(http://upload.wikimedia.org/wikipedia/commons/thumb/5/5d/Crystal_Clear_action_build.png/18px-Crystal_Clear_action_build.png);
+
.infobox.geography {
     background-repeat: no-repeat;
+
     text-align: left;
     background-position: 96% 0.33em;
+
     border-collapse: collapse;
     padding-right: 25px;
+
     line-height: 1.2em;  
 +
     font-size: 90%;
 
}
 
}
  
/* The words 'MediaWiki.org' in the title.*/
+
.infobox.geography  td,
#mainpage_mwtitle {
+
.infobox.geography  th {
  color: #005288;
+
    border-top: solid 1px #aaa;
 +
    padding: 0.4em 0.6em 0.4em 0.6em;
 +
}
 +
.infobox.geography .mergedtoprow td,
 +
.infobox.geography .mergedtoprow th {
 +
    border-top: solid 1px #aaa;
 +
    padding: 0.4em 0.6em 0.2em 0.6em;
 
}
 
}
  
/********* Extension Infobox Styling ***********/
+
.infobox.geography .mergedrow td,
 +
.infobox.geography .mergedrow th {
 +
    border: 0;
 +
    padding: 0 0.6em 0.2em 0.6em;
 +
}
  
.ext-infobox {
+
.infobox.geography .mergedbottomrow td,
  border: 2px solid #aaaaaa;
+
.infobox.geography .mergedbottomrow th {
  width: 272px;  
+
    border-top: 0;
  float: right;
+
    border-bottom: solid 1px #aaa;
  margin: 0 0 0.5em 0.5em;
+
    padding: 0 0.6em 0.4em 0.6em;
  border-collapse: collapse;
+
  background-color: white;
+
 
}
 
}
  
.ext-infobox td {
+
.infobox.geography .maptable td,
  border: 2px none #aaaaaa;
+
.infobox.geography .maptable th {
  padding: 0.2em 0.5em;
+
    border: 0;
  border-bottom: 1px solid #f0f0f0 !important;
+
    padding: 0;
 
}
 
}
  
.ext-header {
+
/* Style for "notices" */
  background-color: #aaaaaa;
+
.notice {
  color: white;
+
    margin: 1em;
  text-align: left;
+
    padding: 0.2em;
 
}
 
}
.ext-header td {
+
 
  padding-top: 0.5em;
+
#disambig {
 +
    border-top: 1px solid #ccc;
 +
    border-bottom: 1px solid #ccc;
 
}
 
}
  
.ext-header img {
+
.spoiler {
  padding: 0 0.2em 0 0.5em;
+
    border-top: 2px solid #ddd;
 +
    border-bottom: 2px solid #ddd;
 
}
 
}
  
.ext-status-unstable, .ext-status-unstable td {
+
/* Standard talk template style */
  border-color: #990000;
+
 
 +
.Talk-Notice  {
 +
    border: 1px solid #C0C090;
 +
    background-color: #F8EABA;
 +
    margin-bottom: 3px;
 +
    width: 85%;
 +
    border-spacing: 3px;
 +
    margin-left: auto;
 +
    margin-right: auto;
 
}
 
}
.ext-status-unstable .ext-header {
+
 
   background-color: #990000;
+
.Talk-Notice:after {
  color: #ffff00;
+
   content: "The CSS for this template should be changed. See [[Wikipedia:Template Standardisation]].";
 
}
 
}
  
.ext-status-experimental, .ext-status-experimental td {
+
/* Make template background appear correctly on all browsers */
  border-color: #CC6600;
+
.Talk-Notice td {
 +
    background: inherit;
 
}
 
}
.ext-status-experimental .ext-header {
+
 
  background-color: #CC6600;
+
/* Persondata and other (future) metadata */
 +
table.InChI, /* temporary */
 +
table.persondata {
 +
    border: 1px solid #aaa;
 +
    display: none;
 +
    speak: none;
 +
}
 +
.InChI-label, /* temporary */
 +
.persondata-label {
 +
    color: #aaa;
 
}
 
}
  
.ext-status-beta, .ext-status-beta td {
+
/* Makes redirects appear in italics in categories and on [[Special:Allpages]] */
  border-color: #000099;
+
.redirect-in-category, .allpagesredirect {
 +
    font-style: italic;
 
}
 
}
.ext-status-beta .ext-header {
+
 
  background-color: #000099;
+
/* Class for links with loudspeaker icon next to them */
 +
/* (Used in [[Template:Audio]] and the like to make the speaker clickable) */
 +
 
 +
.audiolink a {
 +
    background: url("http://upload.wikimedia.org/wikipedia/commons/thumb/8/8a/Loudspeaker.svg/11px-Loudspeaker.svg.png") center left no-repeat !important;
 +
    padding-left: 16px !important;
 +
    padding-right: 0 !important;
 
}
 
}
  
.ext-status-stable, .ext-status-stable td  {
+
/* Icons for medialist templates [[Template:Listen]], [[Template:Multi-listen_start]], [[Template:Video]], [[Template:Multi-video_start]] */
  border-color: #009900;
+
 
 +
div.listenlist {
 +
    background: url("http://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Gnome-speakernotes.png/30px-Gnome-speakernotes.png");
 +
    padding-left: 40px;
 
}
 
}
.ext-status-stable .ext-header {
+
 
  background-color: #009900;
+
div.videolist, div.multivideolist {
 +
    background: url("http://upload.wikimedia.org/wikipedia/en/thumb/2/20/Tango-video-x-generic.png/40px-Tango-video-x-generic.png");
 +
    padding-left: 50px;
 
}
 
}
  
 +
/* Style rules for media list templates */
 +
div.medialist {
 +
    min-height: 50px;
 +
    margin: 1em;
 +
    background-position: top left;
 +
    background-repeat: no-repeat;
 +
}
  
  /**** prettify [[Extension Matrix]] ****/ 
+
div.medialist ul {
 
+
     list-style-type: none;  
  .xm-table {
+
     list-style-image: none;
     border: 1px solid #666666;
+
     margin: 0;
    background-color: white;
+
}
  }
+
 
+
  .xm-table td, .xm-table th {
+
    vertical-align: top;
+
    text-align: left;
+
    border: none;
+
     background-color: #EEEEEE;
+
  }
+
 
+
  .xm-table th {
+
    font-weight: bold;
+
  }
+
 
+
  .xm-name { font-weight: bold; }
+
 
+
  .xm-status-unknown { color:#888888; }
+
  .xm-status-experimental { color:red; }
+
  .xm-status-beta { color:blue; }
+
  .xm-status-stable { color:green; }
+
 
+
  .xm-type-unknown { color:#888888; }
+
 
+
  .xm-name, .xm-status, .xm-type, .xm-version, .xm-updated { white-space: nowrap; }
+
 
+
  .xm-updated { font-size:80%; }
+
+
  .xm-alert { background-color: yellow; }
+
 
+
  td.xm-blank { background-color: inherit; }
+
  td.xm-updated { background-color: inherit; }
+
 
+
  td.xm-description {
+
    background-color: inherit;
+
    font-style: italic;
+
  }
+
 
+
  th.xm-blank, th.xm-updated, th.xm-description {
+
    background-color: inherit;  
+
     padding-bottom:0.6ex;
+
    border-bottom: 1px solid #666666;
+
  }
+
 
+
  th.xm-description {
+
    font-style: italic;
+
  }
+
  
/** GENERAL PURPOSE PRETTY TABLES */
+
div.medialist ul li {
table.datatable {
+
    padding-bottom: 0.5em;
background-color: transparent;
+
 
}
 
}
table.datatable th, table.datatable td {
+
 
padding: 4px;
+
div.medialist ul li li {
 +
    font-size: 91%;
 +
    padding-bottom: 0;
 
}
 
}
table.datatable th {
+
 
text-align: left;
+
/* Change the external link icon to an Adobe icon for all PDF files */
background-color: #999999;
+
/* (in browsers that support these CSS selectors, like Mozilla and Opera) */
 +
#bodyContent a[href$=".pdf"].external,
 +
#bodyContent a[href*=".pdf?"].external,
 +
#bodyContent a[href*=".pdf#"].external,
 +
#bodyContent a[href$=".PDF"].external,
 +
#bodyContent a[href*=".PDF?"].external,
 +
#bodyContent a[href*=".PDF#"].external {
 +
    background: url(http://upload.wikimedia.org/wikipedia/commons/thumb/2/23/Icons-mini-file_acrobat.gif/15px-Icons-mini-file_acrobat.gif) center right no-repeat;
 +
    padding-right: 16px;
 
}
 
}
table.datatable tr {
+
 
background-color: #CCCCCC;
+
/* Change the external link icon to an Adobe icon anywhere the PDFlink class */
 +
/* is used (notably Template:PDFlink). This works in IE, unlike the above. */
 +
span.PDFlink a {
 +
    background: url(http://upload.wikimedia.org/wikipedia/commons/thumb/2/23/Icons-mini-file_acrobat.gif/15px-Icons-mini-file_acrobat.gif) center right no-repeat !important;
 +
    padding-right: 17px !important;
 
}
 
}
table.datatable tr:hover {
+
 
background-color: #FFFFCC;
+
span.geolink a {
 +
    background: url(http://upload.wikimedia.org/wikipedia/en/a/a7/Monobook-globe.png) center right no-repeat !important;
 +
    padding-right: 11px !important;
 
}
 
}
  
/* wikitable/prettytable class for skinning normal tables */
+
/* Content in columns with CSS instead of tables [[Template:Columns]] */
table.wikitable,
+
div.columns-2 div.column {
table.prettytable {
+
    float: left;
  margin: 1em 1em 1em 0;
+
    width: 50%;
  background: #f9f9f9;
+
    min-width: 300px;
  border: 1px #aaa solid;
+
  border-collapse: collapse;
+
  empty-cells:show;
+
 
}
 
}
  
table.wikitable th, table.wikitable td,
+
div.columns-3 div.column {
table.prettytable th, table.prettytable td {
+
    float: left;
  border: 1px #aaa solid;
+
    width: 33.3%;
  padding: 0.2em 0.4em;
+
    min-width: 200px;
 
}
 
}
  
table.wikitable th, table.wikitable td.hl3, table.wikitable th.hl3,
+
div.columns-4 div.column {
table.prettytable th, table.prettytable td.hl3, table.wikitable th.hl3 {
+
    float: left;
  background: #8da7d6;
+
    width: 25%;
  text-align: center;
+
    min-width: 150px;
 
}
 
}
  
table.wikitable td.hl1, table.wikitable th.hl1,
+
div.columns-5 div.column {
table.prettytable td.hl1, table.wikitable th.hl1 {
+
    float: left;
  background: #c5d8fc;
+
    width: 20%;
  text-align: center;
+
    min-width: 120px;
 
}
 
}
  
table.wikitable td.hl2, table.wikitable th.hl2,
+
/*Add formatting to make sure that "external references" from [[Template:Ref]] do
table.prettytable td.hl2, table.wikitable th.hl2 {
+
  not get URL expansion, not even when printed. The mechanism up to MediaWiki 1.4 was
  background: #a7c1f2;
+
  that the HTML code contained a SPAN following the anchor A; this SPAN had the class
  text-align: center;
+
  "urlexpansion", which was not displayed on screen, but was shown when the medium was
 +
  "print". The rules below ensure (a) that there is no extra padding to the right of
 +
  the anchor (displayed as "[<number>]"), (b) that there is no "external link arrow" for
 +
  the link, and (c) that this SPAN of class "urlexpansion" is never shown.
 +
  ~~~~
 +
*/
 +
 
 +
.plainlinksneverexpand {
 +
    background: none ! important;
 +
    padding: 0 ! important;
 
}
 
}
  
table.wikitable caption,
+
.plainlinksneverexpand .urlexpansion {
table.prettytable caption {
+
    display: none ! important;
  margin-left: inherit;
+
  margin-right: inherit;
+
  font-weight: bold;
+
 
}
 
}
  
 +
/* Make sure that ext links displayed within "plainlinksneverexpand" don't get
 +
  the arrow...
 +
*/
 +
.plainlinksneverexpand a {
 +
    background: none !important;
 +
    padding: 0 !important;
 +
}
  
/** Sidebar External Links **/
+
/* With MediaWiki 1.5, the mechanism has changed: instead of a SPAN of class "urlexpansion"
 +
  following the anchor A, the anchor itself now has class "external autonumber" and the
 +
  expansion is inserted when printing (see the common printing style sheet at
 +
  http://en.wikipedia.org/skins-1.5/common/commonPrint.css) using the ":after" pseudo-
 +
  element of CSS. We have to switch this off for links due to Template:Ref!
 +
*/
 +
.plainlinksneverexpand a.external.text:after {
 +
    display: none !important;
 +
}
 +
.plainlinksneverexpand a.external.autonumber:after {
 +
    display: none !important;
 +
}
  
#n-browse-cvs a, #n-phpdoc a, #n-Mailing-list a {
+
/* Messagebox templates */
background: url(/skins-1.5/monobook/external.png) center right no-repeat;
+
.messagebox {
padding-right: 13px;
+
    border: 1px solid #aaa;
color: #36b;
+
    background-color: #f9f9f9;
 +
    width: 80%;
 +
    margin: 0 auto 1em auto;
 +
    padding: .2em;
 +
}
 +
.messagebox.merge {
 +
    border: 1px solid #c0b8cc;
 +
    background-color: #f0e5ff;
 +
    text-align: center;
 +
}
 +
.messagebox.cleanup {
 +
    border: 1px solid #9f9fff;
 +
    background-color: #efefff;
 +
    text-align: center;
 +
}
 +
.messagebox.standard-talk {
 +
    border: 1px solid #c0c090;
 +
    background-color: #f8eaba;
 +
}
 +
.messagebox.nested-talk {
 +
    border: 1px solid #c0c090;
 +
    background-color: #f8eaba;
 +
    width: 100%;
 +
    margin: 2px 4px 2px 4px;
 +
}
 +
.messagebox.small {
 +
    width: 238px;
 +
    font-size: 85%;
 +
    float: right;
 +
    clear: both;
 +
    margin: 0 0 1em 1em;
 +
    line-height: 1.25em;  
 +
}
 +
.messagebox.small-talk {
 +
    width: 238px;
 +
    font-size: 85%;
 +
    float: right;
 +
    clear: both;
 +
    margin: 0 0 1em 1em;
 +
    line-height: 1.25em;
 +
    background: #F8EABA;
 
}
 
}
  
/* make the list of references look smaller */
+
/* Article message box template styles */
ol.references {
+
table.ambox {
  font-size: 100%;
+
    margin: 0 10%;                      /* Will not overlap with other elements */
 +
    border-collapse: collapse;
 +
    background: #fbfbfb;
 +
    border: 1px solid #aaa;
 +
    border-left: 10px solid #1e90ff;    /* Default "notice" blue */
 +
}
 +
table.ambox th.ambox-text, table.ambox td.ambox-text {      /* The message body cell(s) */
 +
    padding: 0.25em 0.5em;            /* 0.5em left/right */
 +
    width: 100%;                      /* Make all templates the same width regardless of text size */
 +
}
 +
table.ambox td.ambox-image {         /* The left image cell */
 +
    padding: 2px 0px 2px 0.5em;      /* 0.5em left, 0px right */
 +
    text-align: center;
 +
}
 +
table.ambox td.ambox-imageright {    /* The right image cell */
 +
    padding: 2px 4px 2px 0px;        /* 0px left, 4px right */
 +
    text-align: center;
 +
}
 +
table.ambox-notice {
 +
    border-left: 10px solid #1e90ff;    /* Blue */
 +
/* border-right: 10px solid #1e90ff; */  /* If you want two blue bars */
 +
}
 +
table.ambox-delete,
 +
table.ambox-serious {
 +
    border-left: 10px solid #b22222;    /* Red */
 +
}
 +
table.ambox-content {
 +
    border-left: 10px solid #f28500;    /* Orange */
 +
}
 +
table.ambox-style {
 +
    border-left: 10px solid #f4c430;    /* Yellow */
 +
}
 +
table.ambox-merge {
 +
    border-left: 10px solid #9932cc;    /* Purple */
 +
}
 +
table.ambox-protection {
 +
    border-left: 10px solid #bba;        /* Gray */
 +
}
 +
table.ambox.ambox-mini {                /* small floating box variant */
 +
    float: right;
 +
    clear: right;
 +
    margin: 0 0 0 1em;
 +
    width: 25%;
 
}
 
}
  
.references-small { font-size: 90%;}
+
/* Put a checker background at the image description page only visible if the image has transparent background */
 +
#file img {background: url("http://upload.wikimedia.org/wikipedia/commons/5/5d/Checker-16x16.png") repeat;}
  
/* prevent ugly horizontal page expansion */
+
/* Support for Template:IPA, Template:Unicode and Template:Polytonic. The inherit declaration resets the font for all browsers except MSIE6.  The empty comment must remain. Please copy any changes to [[Template:IPA fonts]] and [[Template:Unicode fonts]]. */
pre { overflow: auto; }
+
.IPA {
 +
    font-family: "Chrysanthi Unicode", "Doulos SIL", Gentium, GentiumAlt, Code2000, "TITUS Cyberbit Basic", "DejaVu Sans", "Bitstream Cyberbit", "Arial Unicode MS", "Lucida Sans Unicode", "Hiragino Kaku Gothic Pro", "Matrix Unicode";
 +
    font-family /**/:inherit;
 +
}
 +
.Unicode {
 +
    font-family: Code2000, Code2001, "Free Serif", "TITUS Cyberbit Basic", "Doulos SIL", "Chrysanthi Unicode", "Bitstream Cyberbit", "Bitstream CyberBase", Thryomanes, Gentium, GentiumAlt, "Lucida Grande", "Free Sans", "Arial Unicode MS", "Microsoft Sans Serif", "Lucida Sans Unicode";
 +
    font-family /**/:inherit;
 +
}
 +
.latinx {
 +
    font-family: Code2000, Code2001, "TITUS Cyberbit Basic", "Microsoft Sans Serif";
 +
    font-family /**/:inherit;
 +
}
 +
.polytonic {
 +
    font-family: "Athena Unicode", Gentium, "Palatino Linotype", "Arial Unicode MS", "Lucida Sans Unicode", "Lucida Grande", Code2000;
 +
    font-family /**/:inherit;
 +
}
 +
.mufi {
 +
    font-family: Alphabetum, Cardo, LeedsUni, Junicode, "TITUS Cyberbit Basic", ALPHA-Demo;
 +
}
  
/**** Version box on [[Manual:Downloading MediaWiki]] ****/
+
/* Pseudo-classes in support of [[Template:lang]]. */
  
#DownloadVersionBox {
+
:lang(he) {
  border: 2px solid black;
+
    font-family: "SBL Hebrew", "Ezra SIL SR", "Ezra SIL", Cardo, "Chrysanthi Unicode", "TITUS Cyberbit Basic", "Arial Unicode MS", Narkisim, "Times New Roman";
  border-collapse: collapse;  
+
    font-family /**/:inherit;
  margin: auto;
+
}
  width: 50%;
+
:lang(fa) {
  color: black;
+
    font-family: "Nafees Nastaleeq", "Pak Nastaleeq", PDMS_Jauhar;
 +
    font-family /**/:inherit;
 +
}
 +
:lang(ps) {
 +
    font-family: "Nafees Nastaleeq", "Pak Nastaleeq", PDMS_Jauhar;
 +
    font-family /**/:inherit;
 +
}
 +
:lang(ur) {
 +
    font-family: "Nafees Nastaleeq", "Pak Nastaleeq", PDMS_Jauhar;
 +
    font-family /**/:inherit;
 +
}
 +
:lang(sux-Xsux) {
 +
    font-family: Akkadian;
 +
    font-family /**/:inherit;
 +
}
 +
:lang(ja) {
 +
      font-family: Code2000, "Arial Unicode MS", "Bitstream Cyberbit", "Bitstream CyberCJK", IPAGothic, IPAPGothic, IPAUIGothic, "Kochi Gothic", IPAMincho, IPAPMincho;
 +
    font-family /**/:inherit;
 +
}
 +
:lang(ko) {
 +
    font-family: "Adobe Myungjo Std M", AppleMyungjo, "Baekmuk Batang", "Baekmuk Gulim", Batang, Dotum, DotumChe, Gulim, GulimChe, HYGothic-Extra, HYMyeongJo-Extra, "New Gulim", UnBatang, UnDotum, UnYetgul, UWKMJF;
 +
    font-family /**/:inherit;
 +
}
 +
:lang(zh-Hans) {
 +
    font-family: "Adobe Song Std L", "AR PL ShanHeiSun Uni", "AR PL ShanHeiSun Uni MBE", "MS Hei", "MS Song", SimHei;
 +
    font-family /**/:inherit;
 +
}
 +
:lang(zh-Hant) {
 +
    font-family: "Adobe Ming Std L", "AR PL New Sung", "AR PL ZenKai Uni", "AR PL ZenKai Uni MBE", MingLiU, PMingLiU;
 +
    font-family /**/:inherit;
 +
}
 +
:lang(grc) {
 +
    font-family: "Athena Unicode", Gentium, "Palatino Linotype", "Arial Unicode MS", "Lucida Sans Unicode", "Lucida Grande", Code2000;
 +
    font-family /**/:inherit;
 
}
 
}
  
#DownloadVersionBox td {
+
#wpSave {
  border: 2px solid black;
+
    font-weight: bold;
  padding: 20px;
+
 
}
 
}
  
/*** More whitespace on search page ***/
+
/* class hiddenStructure is defunct. See [[Wikipedia:hiddenStructure]] */
.page-Special_Search #search {
+
.hiddenStructure {
  padding: 1em 0 2em 0;
+
    display: inline ! important;
 +
    color: #f00;
 +
    background-color: #0f0;
 
}
 
}
  
.page-Special_Search #powersearch {
+
/* suppress missing interwiki image links where #ifexist cannot be used due to high number of requests */
  border: 1px solid #CCCCCC;
+
/* use restricted to rail icon management pages */
  padding: 0.5em 0.5em;
+
/* see .hidden-redlink on http://meta.wikimedia.org/wiki/MediaWiki:Common.css */
 +
.check-icon a.new {
 +
    display: none;  
 +
    speak:none;
 
}
 
}
  
.page-Special_Search #powersearch-namespaces {
+
/* Removes underlines from links */
  padding-left: 1em;
+
.nounderlines a {  
  margin: 0.7em 0;
+
    text-decoration: none;
 
}
 
}
  
.page-Special_Search #powersearch-namespaces label {
+
/* Remove underline from IPA links */
  white-space: nowrap;
+
.IPA a:link, .IPA a:visited {
  min-width: 8.4em;
+
    text-decoration: none;
  display: block;
+
  float: left;
+
 
}
 
}
  
/* Clear search button, but not check-boxes: */
+
/* Removes useless links from printout */
.page-Special_Search br {
+
@media print {
  clear: left;
+
    #privacy, #about, #disclaimer {display:none;}
 
}
 
}
  
/**
+
#EnWpMpBook { background-image: url(http://upload.wikimedia.org/wikipedia/en/7/7e/MP-open-book.png); }
* Cute little "tip" boxes
+
#EnWpMpSearch { background: url(http://upload.wikimedia.org/wikipedia/en/a/ae/MP-magnifying-glass.png) no-repeat top right; }
  */
+
#EnWpMpSearchInner { float: right; width: 20em; text-align: center; }
div.tip {
+
#EnWpMpBook2 { background-image: url(http://upload.wikimedia.org/wikipedia/commons/8/8e/MP-open-book2.png); }
 +
 
 +
/* Standard Navigationsleisten, aka box hiding thingy from .de. Documentation at [[Wikipedia:NavFrame]]. */
 +
 
 +
div.Boxmerge,
 +
div.NavFrame {
 +
    margin: 0px;
 
     padding: 4px;
 
     padding: 4px;
     margin-top: 4px;
+
     border: 1px solid #aaa;
     margin-bottom: 4px;
+
    text-align: center;
     min-height: 30px; /* IE users will hate this... */
+
     border-collapse: collapse;
 +
     font-size: 95%;
 
}
 
}
div.tip-info {
+
div.Boxmerge div.NavFrame {
     border: 1px solid #CC9933;
+
    border-style: none;
     background-color: #CCCC99;
+
    border-style: hidden;
 +
}
 +
div.NavFrame + div.NavFrame {
 +
     border-top-style: none;
 +
    border-top-style: hidden;
 +
}
 +
div.NavPic {
 +
    background-color: #fff;
 +
    margin: 0px;
 +
    padding: 2px;
 +
    float: left;
 +
}
 +
div.NavFrame div.NavHead {
 +
    height: 1.6em;
 +
    font-weight: bold;
 +
     background-color: #ccf;
 +
    position:relative;
 +
}
 +
div.NavFrame p {
 +
    font-size: 100%;
 +
}
 +
div.NavFrame div.NavContent {
 +
    font-size: 100%;
 +
}
 +
div.NavFrame div.NavContent p {
 +
    font-size: 100%;
 +
}
 +
div.NavEnd {
 +
    margin: 0px;
 +
    padding: 0px;
 +
    line-height: 1px;
 +
    clear: both;
 
}
 
}
div.tip-gotcha {
+
a.NavToggle {
     border: 1px solid #CC0000;
+
     position:absolute;
     background-color: #CC6666;
+
    top:0px;
 +
    right:3px;
 +
    font-weight:normal;
 +
     font-size:smaller;
 
}
 
}
  
/* Some styling for special page navigation */
+
/* Coloured watchlist numbers */
 +
.mw-plusminus-pos {
 +
    color: #006400; /* darkgreen */
 +
}
  
.sp-cached {
+
/* .mw-plusminus-null currently at developer default */
    background-image: url(http://upload.wikimedia.org/wikipedia/commons/thumb/8/8c/Clock%20and%20warning.svg/20px-Clock%20and%20warning.svg);
+
    background-position: 5px 3px;
+
    background-repeat: no-repeat;
+
    padding: 4px 0 4px 30px;
+
    font-style: italic;
+
    color: #606000;
+
    margin: 0.3em 0;
+
  
    border: 1px solid #EEEE80;
+
.mw-plusminus-neg {
     background-color: #FFFFE0;
+
     color: #8B0000; /* darkred */
 
}
 
}
  
.SpecialPageInfo {
+
.dablink {
     background-color: #f9f9f9;
+
     font-style: italic;
     background-image: url(http://upload.wikimedia.org/wikipedia/commons/thumb/8/89/Exquisite-khelpcenter.png/35px-Exquisite-khelpcenter.png);
+
     padding-left: 2em;
    background-position: 0.8em 0.5em;
+
}
    background-repeat: no-repeat;
+
   
+
    padding: 0.3em 0.5em 0.3em 5.0em;
+
  
    border-color: #025e9d;
+
.dablink i {
     border-width: 1px;
+
     font-style: normal;
    border-style: solid;
+
}
    border-bottom-width: medium;
+
  
     margin-bottom: 1em;
+
/* Style for horizontal UL lists */
 +
.horizontal ul {
 +
    padding: 0;
 +
     margin: 0;
 
}
 
}
  
#searchresulttext {
+
.horizontal li {  
     background-image: url(http://upload.wikimedia.org/wikipedia/commons/thumb/f/f1/Exquisite-kfind.png/45px-Exquisite-kfind.png);
+
     padding: 0 0.6em 0 0.4em;
 +
    display: inline;
 +
    border-right: 1px solid;
 
}
 
}
  
.mw-viewprevnext {
+
.horizontal li:last-child {
  display: block;
+
    border-right: none;
  border: 1px solid #CCCCCC;
+
    padding-right: 0;
  background-color: #F9F9F2;
+
  padding: 0.2em 0.4em;
+
 
}
 
}
  
/* Language template */
+
/* Geographical coordinates
  
.LanguageLinks {
+
To display coordinates using the notation in the source code, write this in your User:Username/monobook.css:
    margin-top: 0.5em;
+
  .geo-default { display: inline } .geo-nondefault { display: none }
}
+
  .geo-dec { display: inline } .geo-dms { display: inline }
  
.LanguageLinks table {
+
To display coordinates using decimal notation, write this in your User:Username/monobook.css:
    clear: both;
+
  .geo-default { display: inline } .geo-nondefault { display: inline }
    border: 1px solid #aaaaaa;
+
  .geo-dec { display: inline } .geo-dms { display: none }
    border-collapse: collapse;
+
 
    padding: 0.2em;
+
To display coordinates using DMS notation, write this in your User:Username/monobook.css:
    margin: 0;
+
  .geo-default { display: inline } .geo-nondefault { display: inline }
    font-size: 85%;
+
  .geo-dec { display: none }  .geo-dms { display: inline }
    margin: 0 1px;
+
 
}
+
To display coordinates in both decimal and DMS notation, write this in your User:Username/monobook.css:
 +
  .geo-default { display: inline } .geo-nondefault { display: inline }
 +
  .geo-dec { display: inline }  .geo-dms { display: inline }
 +
  .geo-multi-punct { display: inline }
 +
 
 +
See [[Template:Coor link]] for how these are used.
 +
 
 +
Note that the classes "geo", "longitude", and "latitude" are not just styles but also used by the [[Geo microformat]], so the names should not be changed.
 +
 
 +
*/
 +
 
 +
.geo-default { display: inline; }
 +
.geo-nondefault { display: none; }
 +
.geo-dms { display: inline; }
 +
.geo-dec { display: inline; }
 +
.geo-multi-punct { display: none; }
  
.LanguageLinks span {
+
.longitude .latitude {
 
     white-space: nowrap;
 
     white-space: nowrap;
 
}
 
}
  
/* Page headings used throughout the wiki (though not very much at the time of writing...) */  
+
/* This is used for the Geo microformat, but no style is needed for now other than .geo-dec. */
.page-notice, .page-warning {
+
.geo { }
    border-width: 1px;
+
    border-style: solid;
+
  
    padding: 0.3em 0.5em;
+
/***** end Geo-related */
    margin-bottom: 1em;
+
  
     width: 80%;  
+
/* When <div class="nonumtoc"> is used on the table of contents, the ToC will display without numbers */
     margin-left: auto;  
+
.nonumtoc .tocnumber { display:none; }
     margin-right: auto;  
+
.nonumtoc #toc ul,
 
+
.nonumtoc .toc ul {
     text-align: center;
+
     line-height: 1.5em;
 +
     list-style: none;
 +
     margin: .3em 0 0;
 +
    padding: 0;
 +
}
 +
.nonumtoc #toc ul ul,
 +
.nonumtoc .toc ul ul {
 +
     margin: 0 0 0 2em;  
 
}
 
}
  
/* Used to add informative notices to the top of pages - BLUE */
+
/* Allow limiting of which header levels are shown in a TOC; <div class="toclimit-3">, for
.page-notice {
+
  instance, will limit to showing ==headings== and ===headings=== but no further (as long as
    background-color: #f9f9f9;
+
  there are no =headings= on the page, which there shouldn't be according to the MoS). */
     border-color: #025e9d;  
+
.toclimit-2 .toclevel-2 {display:none;}
 +
.toclimit-3 .toclevel-3 {display:none;}
 +
.toclimit-4 .toclevel-4 {display:none;}
 +
.toclimit-5 .toclevel-5 {display:none;}
 +
.toclimit-6 .toclevel-6 {display:none;}
 +
.toclimit-7 .toclevel-7 {display:none;}
 +
 
 +
/* Allow transcluded pages to display in lists rather than a table. Compatible in Firefox; incompatible in IE6. */
 +
.listify td {display:list-item}
 +
.listify tr {display:block}
 +
.listify table {display:block}
 +
 
 +
/* Styling for Template:Quote */
 +
 
 +
blockquote.templatequote { margin-top: 0; }
 +
 
 +
blockquote.templatequote div.templatequotecite {
 +
     line-height: 1em;
 
     text-align: left;
 
     text-align: left;
 +
    padding-left: 2em;
 +
    margin-top: 0;
 
}
 
}
  
/* Used to add warning information to the top of pages - RED */
+
blockquote.templatequote div.templatequotecite cite {
.page-warning {
+
     font-size: smaller;
     background-color: #ffffff;
+
    border-color: #c51919;
+
    border-width: 2px;
+
 
}
 
}
  
.pw-head {
+
div.user-block {
     color: #c51919;
+
     padding: 5px;
     font-weight: bold;
+
    border: 1px solid #A9A9A9;
 +
     background-color: #FFEFD5;
 
}
 
}
  
/* Coloured watchlist / Special:Recentchanges numbers */
+
/* Prevents line breaks in links; see docs at Template:Nowraplinks */
.mw-plusminus-pos {
+
 
  color: #006400; /* darkgreen */
+
.nowraplinks a {
 +
    white-space: nowrap;
 
}
 
}
+
 
/* .mw-plusminus-null currently at developer default */
+
/* For template documentation */
+
.template-documentation {
.mw-plusminus-neg {
+
    clear: both;
  color: #8B0000; /* darkred */
+
    margin: 1em 0 0 0;
 +
    border: 1px solid #aaa;
 +
    background-color: #ecfcf4;
 +
    padding: 5px;
 
}
 
}
  
/* extra buttons for edit dialog */
+
.thumbinner {
/* from commons:MediaWiki:Common.css */
+
    min-width:100px;
 +
}
 
   
 
   
.my-buttons {
+
/* </nowiki></pre> */
  padding: 0.5em;
+
}
+
.my-buttons a {
+
  color: black;
+
  background-color: #ccddee !important;
+
  font-weight: bold;
+
  font-size: 0.9em;
+
  text-decoration: none;
+
  border: thin #006699 outset;
+
  padding: 0 0.1em 0.1em 0.1em;
+
}
+
.my-buttons a:hover, .my-buttons a:active {
+
  background-color: #bbccdd;
+
  border-style: inset;
+
}
+
 
+
/** </nowiki></pre> */
+

Revision as of 22:49, 14 January 2008

/*
ATTENTION ADMINISTRATORS:
 
This is the CSS for all skins. Any major changes to this page or
[[MediaWiki:Monobook.css|Monobook.css]] should be first proposed on
the [[Wikipedia:Village pump (technical)|Village pump]].  
 
Furthermore, changes should probably be made in [[MediaWiki:Common.css]]
rather than this page.
 
Testing can be done on your own user Monobook.css. In [[Mozilla]] and
[[Opera (web browser)|Opera]], you can also test style changes dynamically
with the [http://www.squarefree.com/bookmarklets/webdevel.html test styles]
bookmarklet from squarefree.com. It pops up a window for adding style rules,
and updates the page as you type.
 
Always check with the [http://tinyurl.com/28y334 W3C CSS Validation Service]
([http://tinyurl.com/2g8bsk CVS version]) after any changes.

See also: [[Wikipedia:Catalogue of CSS classes|catalogue of CSS classes]].
 
Thank you.
*/
 
/* <pre><nowiki> */
 
/* Main page fixes */
#interwiki-completelist {
    font-weight: bold;
}

/* Add space below the toolbar */
#toolbar {
    margin-bottom: 6px;
}

/* make the list of references look smaller */
ol.references {
    font-size: 100%;
}

.references-small { font-size: 90%;}

/* VALIDATOR NOTICE: the following is correct, but the W3C validator doesn't accept it */
/* -moz-* is a vendor-specific extension (CSS 2.1 4.1.2.1) */
/* column-count is from the CSS3 module "CSS Multi-column Layout" */
/* Please ignore any validator errors caused by these two lines */
.references-2column {
    font-size: 90%;
    -moz-column-count:2;
    -webkit-column-count:2;
    column-count:2;
}

.same-bg { background: none }

/* Highlight clicked reference in blue to help navigation */
ol.references > li:target {
    background-color: #DEF;
}

sup.reference:target { 
    background-color: #DEF;
}

/* Styling for citations */
cite {
    font-style: normal;
    word-wrap: break-word;
}

/* If there is an inline link to a full citation, the full citation will turn blue when the inline link is clicked */
cite:target { 
    background-color: #DEF;
}

/* Do not expand URLs within citations for printing. The URLs should be included explicitly, to avoid confusion */

@media print {
    #content cite a.external.text:after {
        display: none;
    }
}

/* For linked citation numbers and document IDs, where the number need not be shown on a screen or a handheld, but should be included in the printed version */

@media screen, handheld, projection {
    cite *.printonly {
        display: none;
    }
}

/* wikitable/prettytable class for skinning normal tables */
table.wikitable,
table.prettytable {
    margin: 1em 1em 1em 0;
    background: #f9f9f9;
    border: 1px #aaa solid;
    border-collapse: collapse;
}

table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
    border: 1px #aaa solid;
    padding: 0.2em;
}

table.wikitable th,
table.prettytable th {
    background: #f2f2f2;
    text-align: center;
}

table.wikitable caption,
table.prettytable caption {
    margin-left: inherit;
    margin-right: inherit;
    font-weight: bold;
}

table.prettytable code,
table.wikitable code {
    background-color: transparent;
}

/* default skin for navigation boxes */
table.navbox {
    background-color: #f9f9f9;
    border: 1px solid #aaa;
    clear: both;
    font-size: 90%;
    margin: 1em 0em 0em;
    padding: 2px;
    text-align: center;
    width: 100%;
}

table.navbox th {
    background-color: #ccf;
    padding-left: 1em;
    padding-right: 1em;
}

@media print {
    .navbox {
        display: none;
    }
}

/* Infobox template style */
.infobox {
    border: 1px solid #aaa;
    background-color: #f9f9f9;
    color: black;
    margin-bottom: 0.5em;
    margin-left: 1em;
    padding: 0.2em;
    float: right;
    clear: right;
}
.infobox td,
.infobox th {
    vertical-align: top;
}
.infobox caption {
    font-size: larger;
    margin-left: inherit;
}
.infobox.bordered {
    border-collapse: collapse;
}
.infobox.bordered td,
.infobox.bordered th {
    border: 1px solid #aaa;
}
.infobox.bordered .borderless td,
.infobox.bordered .borderless th {
    border: 0;
}

.infobox.sisterproject {
    width: 20em;
    font-size: 90%;
}

@media print {
    .infobox.sisterproject {
        display: none;
    }
}

/* styles for bordered infobox with merged rows */
.infobox.bordered .mergedtoprow td,
.infobox.bordered .mergedtoprow th {
    border: 0;
    border-top: 1px solid #aaa;
    border-right: 1px solid #aaa;
}

.infobox.bordered .mergedrow td,
.infobox.bordered .mergedrow th {
    border: 0;
    border-right: 1px solid #aaa;
}

/* Styles for geography infoboxes, e.g. countries, country subdivisions, cities, etc. */
.infobox.geography {
    text-align: left;
    border-collapse: collapse;
    line-height: 1.2em; 
    font-size: 90%;
}

.infobox.geography  td,
.infobox.geography  th {
    border-top: solid 1px #aaa;
    padding: 0.4em 0.6em 0.4em 0.6em;
}
.infobox.geography .mergedtoprow td,
.infobox.geography .mergedtoprow th {
    border-top: solid 1px #aaa;
    padding: 0.4em 0.6em 0.2em 0.6em;
}

.infobox.geography .mergedrow td,
.infobox.geography .mergedrow th {
    border: 0;
    padding: 0 0.6em 0.2em 0.6em;
}

.infobox.geography .mergedbottomrow td,
.infobox.geography .mergedbottomrow th {
    border-top: 0;
    border-bottom: solid 1px #aaa;
    padding: 0 0.6em 0.4em 0.6em;
}

.infobox.geography .maptable td,
.infobox.geography .maptable th {
    border: 0;
    padding: 0;
}

/* Style for "notices" */
.notice {
    margin: 1em;
    padding: 0.2em;
}

#disambig {
    border-top: 1px solid #ccc; 
    border-bottom: 1px solid #ccc;
}

.spoiler {
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
}

/* Standard talk template style */

.Talk-Notice  {
    border: 1px solid #C0C090;
    background-color: #F8EABA;
    margin-bottom: 3px;
    width: 85%;
    border-spacing: 3px;
    margin-left: auto;
    margin-right: auto;
}

.Talk-Notice:after {
  content: "The CSS for this template should be changed. See [[Wikipedia:Template Standardisation]].";
}

/* Make template background appear correctly on all browsers */
.Talk-Notice td {
    background: inherit;
}

/* Persondata and other (future) metadata */
table.InChI, /* temporary */
table.persondata {
    border: 1px solid #aaa;
    display: none;
    speak: none;
}
.InChI-label, /* temporary */
.persondata-label {
    color: #aaa;
}

/* Makes redirects appear in italics in categories and on [[Special:Allpages]] */
.redirect-in-category, .allpagesredirect {
    font-style: italic;
}

/* Class for links with loudspeaker icon next to them */
/* (Used in [[Template:Audio]] and the like to make the speaker clickable) */

.audiolink a {
    background: url("http://upload.wikimedia.org/wikipedia/commons/thumb/8/8a/Loudspeaker.svg/11px-Loudspeaker.svg.png") center left no-repeat !important;
    padding-left: 16px !important;
    padding-right: 0 !important;
}

/* Icons for medialist templates [[Template:Listen]], [[Template:Multi-listen_start]], [[Template:Video]], [[Template:Multi-video_start]] */

div.listenlist {
    background: url("http://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Gnome-speakernotes.png/30px-Gnome-speakernotes.png");
    padding-left: 40px;
}

div.videolist, div.multivideolist {
    background: url("http://upload.wikimedia.org/wikipedia/en/thumb/2/20/Tango-video-x-generic.png/40px-Tango-video-x-generic.png");
    padding-left: 50px;
}

/* Style rules for media list templates */
div.medialist {
    min-height: 50px;
    margin: 1em;
    background-position: top left;
    background-repeat: no-repeat;
}

div.medialist ul {
    list-style-type: none; 
    list-style-image: none;
    margin: 0;
}

div.medialist ul li {
    padding-bottom: 0.5em;
}

div.medialist ul li li {
    font-size: 91%;
    padding-bottom: 0;
}

/* Change the external link icon to an Adobe icon for all PDF files */
/* (in browsers that support these CSS selectors, like Mozilla and Opera) */
#bodyContent a[href$=".pdf"].external, 
#bodyContent a[href*=".pdf?"].external, 
#bodyContent a[href*=".pdf#"].external,
#bodyContent a[href$=".PDF"].external, 
#bodyContent a[href*=".PDF?"].external, 
#bodyContent a[href*=".PDF#"].external {
    background: url(http://upload.wikimedia.org/wikipedia/commons/thumb/2/23/Icons-mini-file_acrobat.gif/15px-Icons-mini-file_acrobat.gif) center right no-repeat;
    padding-right: 16px;
}

/* Change the external link icon to an Adobe icon anywhere the PDFlink class */
/* is used (notably Template:PDFlink). This works in IE, unlike the above. */
span.PDFlink a {
    background: url(http://upload.wikimedia.org/wikipedia/commons/thumb/2/23/Icons-mini-file_acrobat.gif/15px-Icons-mini-file_acrobat.gif) center right no-repeat !important;
    padding-right: 17px !important;
}

span.geolink a {
    background: url(http://upload.wikimedia.org/wikipedia/en/a/a7/Monobook-globe.png) center right no-repeat !important;
    padding-right: 11px !important;
}

/* Content in columns with CSS instead of tables [[Template:Columns]] */
div.columns-2 div.column {
    float: left;
    width: 50%;
    min-width: 300px;
}

div.columns-3 div.column {
    float: left;
    width: 33.3%;
    min-width: 200px;
}

div.columns-4 div.column {
    float: left;
    width: 25%;
    min-width: 150px;
}

div.columns-5 div.column {
    float: left;
    width: 20%;
    min-width: 120px;
}

/*Add formatting to make sure that "external references" from [[Template:Ref]] do
  not get URL expansion, not even when printed. The mechanism up to MediaWiki 1.4 was
  that the HTML code contained a SPAN following the anchor A; this SPAN had the class
  "urlexpansion", which was not displayed on screen, but was shown when the medium was
  "print". The rules below ensure (a) that there is no extra padding to the right of
  the anchor (displayed as "[<number>]"), (b) that there is no "external link arrow" for
  the link, and (c) that this SPAN of class "urlexpansion" is never shown.
  ~~~~
*/

.plainlinksneverexpand {
    background: none ! important;
    padding: 0 ! important;
}

.plainlinksneverexpand .urlexpansion {
    display: none ! important;
}

/* Make sure that ext links displayed within "plainlinksneverexpand" don't get
   the arrow...
*/
.plainlinksneverexpand a {
    background: none !important;
    padding: 0 !important;
}

/* With MediaWiki 1.5, the mechanism has changed: instead of a SPAN of class "urlexpansion"
   following the anchor A, the anchor itself now has class "external autonumber" and the
   expansion is inserted when printing (see the common printing style sheet at
   http://en.wikipedia.org/skins-1.5/common/commonPrint.css) using the ":after" pseudo-
   element of CSS. We have to switch this off for links due to Template:Ref!
*/
.plainlinksneverexpand a.external.text:after {
    display: none !important;
}
.plainlinksneverexpand a.external.autonumber:after {
    display: none !important;
}

/* Messagebox templates */
.messagebox {
    border: 1px solid #aaa;
    background-color: #f9f9f9;
    width: 80%;
    margin: 0 auto 1em auto;
    padding: .2em;
}
.messagebox.merge {
    border: 1px solid #c0b8cc;
    background-color: #f0e5ff;
    text-align: center;
}
.messagebox.cleanup {
    border: 1px solid #9f9fff;
    background-color: #efefff;
    text-align: center;
}
.messagebox.standard-talk {
    border: 1px solid #c0c090;
    background-color: #f8eaba;
}
.messagebox.nested-talk {
    border: 1px solid #c0c090;
    background-color: #f8eaba;
    width: 100%;
    margin: 2px 4px 2px 4px;
}
.messagebox.small {
    width: 238px;
    font-size: 85%;
    float: right;
    clear: both;
    margin: 0 0 1em 1em;
    line-height: 1.25em; 
}
.messagebox.small-talk {
    width: 238px;
    font-size: 85%;
    float: right;
    clear: both;
    margin: 0 0 1em 1em;
    line-height: 1.25em; 
    background: #F8EABA;
}

/* Article message box template styles */
table.ambox {
    margin: 0 10%;                       /* Will not overlap with other elements */
    border-collapse: collapse; 
    background: #fbfbfb; 
    border: 1px solid #aaa; 
    border-left: 10px solid #1e90ff;     /* Default "notice" blue */
}
table.ambox th.ambox-text, table.ambox td.ambox-text {      /* The message body cell(s) */
    padding: 0.25em 0.5em;            /* 0.5em left/right */
    width: 100%;                      /* Make all templates the same width regardless of text size */
}
table.ambox td.ambox-image {          /* The left image cell */
    padding: 2px 0px 2px 0.5em;       /* 0.5em left, 0px right */
    text-align: center; 
}
table.ambox td.ambox-imageright {     /* The right image cell */
    padding: 2px 4px 2px 0px;         /* 0px left, 4px right */
    text-align: center; 
}
table.ambox-notice {
    border-left: 10px solid #1e90ff;     /* Blue */
/* border-right: 10px solid #1e90ff; */  /* If you want two blue bars */
}
table.ambox-delete,
table.ambox-serious {
    border-left: 10px solid #b22222;     /* Red */
}
table.ambox-content {
    border-left: 10px solid #f28500;     /* Orange */
}
table.ambox-style {
    border-left: 10px solid #f4c430;     /* Yellow */
}
table.ambox-merge {
    border-left: 10px solid #9932cc;     /* Purple */
}
table.ambox-protection {
    border-left: 10px solid #bba;        /* Gray */
}
table.ambox.ambox-mini {                 /* small floating box variant */
    float: right;
    clear: right;
    margin: 0 0 0 1em;
    width: 25%;
}

/* Put a checker background at the image description page only visible if the image has transparent background */
#file img {background: url("http://upload.wikimedia.org/wikipedia/commons/5/5d/Checker-16x16.png") repeat;}

/* Support for Template:IPA, Template:Unicode and Template:Polytonic. The inherit declaration resets the font for all browsers except MSIE6.  The empty comment must remain. Please copy any changes to [[Template:IPA fonts]] and [[Template:Unicode fonts]]. */
.IPA {
    font-family: "Chrysanthi Unicode", "Doulos SIL", Gentium, GentiumAlt, Code2000, "TITUS Cyberbit Basic", "DejaVu Sans", "Bitstream Cyberbit", "Arial Unicode MS", "Lucida Sans Unicode", "Hiragino Kaku Gothic Pro", "Matrix Unicode";
    font-family /**/:inherit;
}
.Unicode {
    font-family: Code2000, Code2001, "Free Serif", "TITUS Cyberbit Basic", "Doulos SIL", "Chrysanthi Unicode", "Bitstream Cyberbit", "Bitstream CyberBase", Thryomanes, Gentium, GentiumAlt, "Lucida Grande", "Free Sans", "Arial Unicode MS", "Microsoft Sans Serif", "Lucida Sans Unicode";
    font-family /**/:inherit;
}
.latinx {
    font-family: Code2000, Code2001, "TITUS Cyberbit Basic", "Microsoft Sans Serif";
    font-family /**/:inherit;
}
.polytonic {
    font-family: "Athena Unicode", Gentium, "Palatino Linotype", "Arial Unicode MS", "Lucida Sans Unicode", "Lucida Grande", Code2000; 
    font-family /**/:inherit;
}
.mufi {
    font-family: Alphabetum, Cardo, LeedsUni, Junicode, "TITUS Cyberbit Basic", ALPHA-Demo;
}

/* Pseudo-classes in support of [[Template:lang]]. */

:lang(he) {
    font-family: "SBL Hebrew", "Ezra SIL SR", "Ezra SIL", Cardo, "Chrysanthi Unicode", "TITUS Cyberbit Basic", "Arial Unicode MS", Narkisim, "Times New Roman";
    font-family /**/:inherit;
}
:lang(fa) {
    font-family: "Nafees Nastaleeq", "Pak Nastaleeq", PDMS_Jauhar;
    font-family /**/:inherit;
}
:lang(ps) {
    font-family: "Nafees Nastaleeq", "Pak Nastaleeq", PDMS_Jauhar;
    font-family /**/:inherit;
}
:lang(ur) {
    font-family: "Nafees Nastaleeq", "Pak Nastaleeq", PDMS_Jauhar;
    font-family /**/:inherit;
}
:lang(sux-Xsux) {
    font-family: Akkadian;
    font-family /**/:inherit;
}
:lang(ja) {
       font-family: Code2000, "Arial Unicode MS", "Bitstream Cyberbit", "Bitstream CyberCJK", IPAGothic, IPAPGothic, IPAUIGothic, "Kochi Gothic", IPAMincho, IPAPMincho;
    font-family /**/:inherit;
}
:lang(ko) {
    font-family: "Adobe Myungjo Std M", AppleMyungjo, "Baekmuk Batang", "Baekmuk Gulim", Batang, Dotum, DotumChe, Gulim, GulimChe, HYGothic-Extra, HYMyeongJo-Extra, "New Gulim", UnBatang, UnDotum, UnYetgul, UWKMJF;
    font-family /**/:inherit;
}
:lang(zh-Hans) {
    font-family: "Adobe Song Std L", "AR PL ShanHeiSun Uni", "AR PL ShanHeiSun Uni MBE", "MS Hei", "MS Song", SimHei;
    font-family /**/:inherit;
}
:lang(zh-Hant) {
    font-family: "Adobe Ming Std L", "AR PL New Sung", "AR PL ZenKai Uni", "AR PL ZenKai Uni MBE", MingLiU, PMingLiU;
    font-family /**/:inherit;
}
:lang(grc) {
    font-family: "Athena Unicode", Gentium, "Palatino Linotype", "Arial Unicode MS", "Lucida Sans Unicode", "Lucida Grande", Code2000;
    font-family /**/:inherit;
}

#wpSave {
    font-weight: bold;
}

/* class hiddenStructure is defunct. See [[Wikipedia:hiddenStructure]] */
.hiddenStructure {
    display: inline ! important;
    color: #f00; 
    background-color: #0f0;
}

/* suppress missing interwiki image links where #ifexist cannot be used due to high number of requests */
/* use restricted to rail icon management pages */
/* see .hidden-redlink on http://meta.wikimedia.org/wiki/MediaWiki:Common.css */
.check-icon a.new {
    display: none; 
    speak:none;
}

/* Removes underlines from links */
.nounderlines a { 
    text-decoration: none;
}

/* Remove underline from IPA links */
.IPA a:link, .IPA a:visited {
    text-decoration: none;
}

/* Removes useless links from printout */
@media print {
    #privacy, #about, #disclaimer {display:none;}
}

#EnWpMpBook { background-image: url(http://upload.wikimedia.org/wikipedia/en/7/7e/MP-open-book.png); }
#EnWpMpSearch { background: url(http://upload.wikimedia.org/wikipedia/en/a/ae/MP-magnifying-glass.png) no-repeat top right; }
#EnWpMpSearchInner { float: right; width: 20em; text-align: center; }
#EnWpMpBook2 { background-image: url(http://upload.wikimedia.org/wikipedia/commons/8/8e/MP-open-book2.png); }

/* Standard Navigationsleisten, aka box hiding thingy from .de.  Documentation at [[Wikipedia:NavFrame]]. */

div.Boxmerge,
div.NavFrame {
    margin: 0px;
    padding: 4px;
    border: 1px solid #aaa;
    text-align: center;
    border-collapse: collapse;
    font-size: 95%;
}
div.Boxmerge div.NavFrame {
    border-style: none;
    border-style: hidden;
}
div.NavFrame + div.NavFrame {
    border-top-style: none;
    border-top-style: hidden;
}
div.NavPic {
    background-color: #fff;
    margin: 0px;
    padding: 2px;
    float: left;
}
div.NavFrame div.NavHead {
    height: 1.6em;
    font-weight: bold;
    background-color: #ccf;
    position:relative;
}
div.NavFrame p {
    font-size: 100%;
}
div.NavFrame div.NavContent {
    font-size: 100%;
}
div.NavFrame div.NavContent p {
    font-size: 100%;
}
div.NavEnd {
    margin: 0px;
    padding: 0px;
    line-height: 1px;
    clear: both;
}
a.NavToggle {
    position:absolute;
    top:0px;
    right:3px;
    font-weight:normal;
    font-size:smaller;
}

/* Coloured watchlist numbers */
.mw-plusminus-pos {
    color: #006400; /* darkgreen */
}

/* .mw-plusminus-null currently at developer default */

.mw-plusminus-neg {
    color: #8B0000; /* darkred */
}

.dablink {
    font-style: italic;
    padding-left: 2em;
}

.dablink i {
    font-style: normal;
}

/* Style for horizontal UL lists */
.horizontal ul {
    padding: 0;
    margin: 0;
}

.horizontal li { 
    padding: 0 0.6em 0 0.4em;
    display: inline;
    border-right: 1px solid;
}

.horizontal li:last-child {
    border-right: none;
    padding-right: 0;
}

/* Geographical coordinates 

To display coordinates using the notation in the source code, write this in your User:Username/monobook.css:
   .geo-default { display: inline } .geo-nondefault { display: none } 
   .geo-dec { display: inline } .geo-dms { display: inline }

To display coordinates using decimal notation, write this in your User:Username/monobook.css:
   .geo-default { display: inline } .geo-nondefault { display: inline } 
   .geo-dec { display: inline } .geo-dms { display: none }

To display coordinates using DMS notation, write this in your User:Username/monobook.css:
   .geo-default { display: inline } .geo-nondefault { display: inline } 
   .geo-dec { display: none }   .geo-dms { display: inline }

To display coordinates in both decimal and DMS notation, write this in your User:Username/monobook.css:
   .geo-default { display: inline } .geo-nondefault { display: inline } 
   .geo-dec { display: inline }   .geo-dms { display: inline }
   .geo-multi-punct { display: inline }

See [[Template:Coor link]] for how these are used.

Note that the classes "geo", "longitude", and "latitude" are not just styles but also used by the [[Geo microformat]], so the names should not be changed.

*/

.geo-default { display: inline; }
.geo-nondefault { display: none; }
.geo-dms { display: inline; }
.geo-dec { display: inline; }
.geo-multi-punct { display: none; }

.longitude .latitude {
    white-space: nowrap;
}

/* This is used for the Geo microformat, but no style is needed for now other than .geo-dec. */
.geo { }

/***** end Geo-related */

/* When <div class="nonumtoc"> is used on the table of contents, the ToC will display without numbers */
.nonumtoc .tocnumber { display:none; }
.nonumtoc #toc ul,
.nonumtoc .toc ul {
    line-height: 1.5em;
    list-style: none;
    margin: .3em 0 0;
    padding: 0;
}
.nonumtoc #toc ul ul, 
.nonumtoc .toc ul ul { 
    margin: 0 0 0 2em; 
}

/* Allow limiting of which header levels are shown in a TOC; <div class="toclimit-3">, for
   instance, will limit to showing ==headings== and ===headings=== but no further (as long as
   there are no =headings= on the page, which there shouldn't be according to the MoS). */
.toclimit-2 .toclevel-2 {display:none;}
.toclimit-3 .toclevel-3 {display:none;}
.toclimit-4 .toclevel-4 {display:none;}
.toclimit-5 .toclevel-5 {display:none;}
.toclimit-6 .toclevel-6 {display:none;}
.toclimit-7 .toclevel-7 {display:none;}

/* Allow transcluded pages to display in lists rather than a table. Compatible in Firefox; incompatible in IE6. */
.listify td {display:list-item}
.listify tr {display:block}
.listify table {display:block}

/* Styling for Template:Quote */

blockquote.templatequote { margin-top: 0; }

blockquote.templatequote div.templatequotecite { 
    line-height: 1em;
    text-align: left;
    padding-left: 2em;
    margin-top: 0;
}

blockquote.templatequote div.templatequotecite cite {
    font-size: smaller;
}

div.user-block {
    padding: 5px;
    border: 1px solid #A9A9A9;
    background-color: #FFEFD5;
}

/* Prevents line breaks in links; see docs at Template:Nowraplinks */

.nowraplinks a {
    white-space: nowrap;
}

/* For template documentation */
.template-documentation {
    clear: both;
    margin: 1em 0 0 0;
    border: 1px solid #aaa; 
    background-color: #ecfcf4; 
    padding: 5px;
}

.thumbinner {
    min-width:100px;
}
 
/* </nowiki></pre> */
Personal tools
Namespaces

Variants
Actions
Tools
Resources
Toolbox