MediaWiki:Common.css
From EMule Wiki
(Difference between revisions)
(New page: /** CSS placed here will be applied to all skins */ - →Infobox template style: .infobox { border: 1px solid #aaa; background-color: #f9f9f9; color: black; margin-bottom: 0....) |
(add wikitable) |
||
| (2 intermediate revisions by one user not shown) | |||
| Line 2: | Line 2: | ||
/* Infobox template style */ | /* Infobox template style */ | ||
| + | /* <pre><nowiki> */ | ||
.infobox { | .infobox { | ||
| Line 92: | Line 93: | ||
border: 0; | border: 0; | ||
padding: 0; | padding: 0; | ||
| + | } | ||
| + | |||
| + | |||
| + | |||
| + | /* 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; | ||
} | } | ||
Latest revision as of 20:21, 10 August 2007
/** CSS placed here will be applied to all skins */
/* Infobox template style */
/* <pre><nowiki> */
.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%;
}
}
/* 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;
}
/* 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;
}