MediaWiki:Common.css: Unterschied zwischen den Versionen

Aus HuskyWiki
KKeine Bearbeitungszusammenfassung
KKeine Bearbeitungszusammenfassung
Zeile 1: Zeile 1:
/* Reset italic styling set by user agent */
/*----------------------------------------------------------------------------------------------*/
cite, dfn {
/* ACHTUNG! Common.css enthält die gemeinsamen Skin-Anpassungen der deutschsprachigen Wikipedia */
font-style: inherit;
/*----------------------------------------------------------------------------------------------*/
}
 
/* Straight quote marks for <q> */
q {
quotes: '"' '"' "'" "'";
}
 
/* Avoid collision of blockquote with floating elements by swapping margin and padding */
blockquote {
overflow: hidden;
margin: 1em 0;
padding: 0 40px;
}
 
/* Consistent size for <small>, <sub> and <sup> */
small {
font-size: 85%;
}
 
.mw-body-content sub,
.mw-body-content sup,
span.reference /* for Parsoid */ {
font-size: 80%;
}
 
/* Same spacing for indented and unindented paragraphs on talk pages */
.ns-talk .mw-body-content dd {
margin-top: 0.4em;
margin-bottom: 0.4em;
}
 
/* Main page fixes */
#interwiki-completelist {
font-weight: bold;
}
 
/* Reduce page jumps by hiding collapsed/dismissed content */
.client-js .mw-special-Watchlist #watchlist-message,
.client-js .NavFrame.collapsed .NavContent,
.client-js .collapsible:not( .mw-made-collapsible).collapsed > tbody > tr:not(:first-child) {
display: none;
}
 
/* Adds padding above Watchlist announcements where new recentchanges/watchlist filters are enabled */
.mw-rcfilters-enabled .mw-specialpage-summary {
margin-top: 1em;
}
 
/* Hide charinsert base for those not using the gadget */
#editpage-specialchars {
display: none;
}
 
/* Highlight linked elements (such as clicked references) in blue */
body.action-info .mw-body-content :target,
.citation:target {
background-color: #def;  /* Fallback */
background-color: rgba(0, 127, 255, 0.133);
}
 
/* Styling for citations. Breaks long urls, etc., rather than overflowing box */
.citation {
word-wrap: break-word;
}
 
/* 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 {
.citation .printonly {
display: none;
}
}


/* Make the list of references smaller */
/*
/* Keep in sync with Template:Refbegin/styles.css */
* Common.css ist in drei grundlegende Abschnitte gegliedert:
ol.references,
*
div.reflist {
* 1. Anpassungen der Anzeige von editierbaren Seiteninhalten
font-size: 90%;            /* Default font-size */
*    (a) Definitionen projektweiter Klassen und IDs
margin-bottom: 0.5em;
*    (b) Fußnoten
}
*   (c) HTML-Elemente
 
* 2. Anpassungen der Bedienoberfläche
div.reflist ol.references {
*    (a) Seitenbearbeitung und Hochladen
font-size: 100%;          /* Reset font-size when nested in div.reflist */
*    (b) Anpassungen für die Flagged-Revisions-Erweiterung
margin-bottom: 0;          /* Avoid double margin when nested in div.reflist */
*   (c) Unsortierte Anpassungen
list-style-type: inherit; /* Enable custom list style types */
* 3. Hauptseite
}
*
 
  * Jede Ergänzung/Änderung muss vorher jeweils für alle Skins auf Tauglichkeit
/* Reset top margin for lists embedded in columns */
* getestet werden, individuell per [[Special:Mypage/common.css]]! Ist hier
div.columns {
* erstmal geändert, dauert es dank Cache eine Weile, bis die Änderungen bei
margin-top: 0.3em;
* allen Nutzern sichtbar oder, bei Fehlern, korrigiert sind.
}
*
 
* Insbesondere innerhalb des Abschnitts 1. (a) ist die Reihenfolge der Regeln
div.columns dl,
* wichtig, weil die dort definierten Klassen kombiniert werden können.
div.columns ol,
div.columns ul {
margin-top: 0;
}
 
/* Avoid elements breaking between columns */
/* See also Template:No col break */
div.columns li,
div.columns dd {
page-break-inside: avoid; /* Removed from CSS in favor of break-inside c. 2020 */
break-inside: avoid-column;
}
 
/* Style for horizontal lists (separator following item).
  @source mediawiki.org/wiki/Snippets/Horizontal_lists
  @revision 8 (2016-05-21)
  @author [[User:Edokter]]
  */
  */
.hlist dl,
.hlist ol,
.hlist ul {
margin: 0;
padding: 0;
}
/* Display list items inline */
.hlist dd,
.hlist dt,
.hlist li {
margin: 0;
display: inline;
}


/* Display nested lists inline */
/* +++++ 1. ANPASSUNGEN DER ANZEIGE VON EDITIERBAREN SEITENINHALTEN +++++ */
.hlist.inline,
.hlist.inline dl,
.hlist.inline ol,
.hlist.inline ul,
.hlist dl dl, .hlist dl ol, .hlist dl ul,
.hlist ol dl, .hlist ol ol, .hlist ol ul,
.hlist ul dl, .hlist ul ol, .hlist ul ul {
display: inline;
}


/* Hide empty list items */
/* +++++ 1. (a) DEFINITIONEN PROJEKTWEITER KLASSEN UND IDS +++++ */
.hlist .mw-empty-li {
display: none;
}


/* Generate interpuncts */
/* Personennamen in Kapitälchen */
.hlist dt:after {
.Person {
content: ": ";
font-variant: small-caps;
}
}


/**
/*
  * Note hlist style usage differd in
  * Stylesheet-Ergänzung zu Standard-Navigationsleisten:
  * the Minerva skin. Remember .hlist is a class defined in core as well! Please check Minerva desktop (and Minerva.css) when changing
  * [[Hilfe:Navigationsleisten]], [[Vorlage:Navigationsleiste]]
* See https://phabricator.wikimedia.org/T213239
  */
  */
.hlist dd:after,
div.NavFrame {
.hlist li:after {
content: " · ";
font-weight: bold;
}
 
.hlist dd:last-child:after,
.hlist dt:last-child:after,
.hlist li:last-child:after {
content: none;
}
 
/* Add parentheses around nested lists */
.hlist dd dd:first-child:before, .hlist dd dt:first-child:before, .hlist dd li:first-child:before,
.hlist dt dd:first-child:before, .hlist dt dt:first-child:before, .hlist dt li:first-child:before,
.hlist li dd:first-child:before, .hlist li dt:first-child:before, .hlist li li:first-child:before {
content: " (";
font-weight: normal;
}
 
.hlist dd dd:last-child:after, .hlist dd dt:last-child:after, .hlist dd li:last-child:after,
.hlist dt dd:last-child:after, .hlist dt dt:last-child:after, .hlist dt li:last-child:after,
.hlist li dd:last-child:after, .hlist li dt:last-child:after, .hlist li li:last-child:after {
content: ")";
font-weight: normal;
}
 
/* Put ordinals in front of ordered list items */
.hlist ol {
counter-reset: listitem;
}
 
.hlist ol > li {
counter-increment: listitem;
}
 
.hlist ol > li:before {
content: " " counter(listitem) "\a0";
}
 
.hlist dd ol > li:first-child:before,
.hlist dt ol > li:first-child:before,
.hlist li ol > li:first-child:before {
content: " (" counter(listitem) "\a0";
}
 
/* Unbulleted lists */
.plainlist ol,
.plainlist ul {
line-height: inherit;
list-style: none none;
margin: 0;
}
 
.plainlist ol li,
.plainlist ul li {
margin-bottom: 0;
}
 
/* Default style for navigation boxes */
.navbox {                     /* Navbox container style */
box-sizing: border-box;
border: 1px solid #a2a9b1;
border: 1px solid #a2a9b1;
width: 100%;
clear: both;
clear: both;
font-size: 88%;
font-size: 95%;
margin-top: 1.5em;
min-height: 0; /* IE 7 */
padding: 2px;
text-align: center;
text-align: center;
padding: 1px;
margin: 1em auto 0;      /* Prevent preceding content from clinging to navboxes */
}
}
 
div.NavPic {
.navbox .navbox {
float: left;
margin-top: 0;           /* No top margin for nested navboxes */
padding: 2px;
}
}
 
div.NavHead {
.navbox + .navbox {
background: #eaecf0;
margin-top: -1px;         /* Single pixel border between adjacent navboxes */
font-weight: bold;
}
}
 
div.NavFrame:after {
.navbox-inner,
clear: both;
.navbox-subgroup {
content: "";
width: 100%;
display: block;
}
}


.navbox-group,
/*
.navbox-title,
* Stylesheet für den „Ausklappen“-Button an Navigationsleisten, der in
.navbox-abovebelow {
* [[MediaWiki:Common.js]] implementiert wird
padding: 0.25em 1em;     /* Title, group and above/below styles */
*/
line-height: 1.5em;
.NavToggle {
text-align: center;
float: right;
font-size: x-small;
}
}


th.navbox-group {            /* Group style */
/* Automatisches Verschmelzen benachbarter Navigationsleisten */
white-space: nowrap;
div.NavFrame + div.NavFrame {
/* @noflip */
margin-top: -1px;
text-align: right;
}
}


.navbox,
/*
.navbox-subgroup {
* Verschmelzen mittels [[Vorlage:NaviBlock]]
background-color: #fdfdfd; /* Background color */
* Im Gegensatz zum automatischen Verschmelzen gibt es bei dieser Variante keine
* Trennlinie zwischen den Leisten. Möglicherweise war dies ursprünglich nur ein
* IE-6-Workaround, da das automatische Verschmelzen im IE 6 nicht funktioniert.
*/
div.BoxenVerschmelzen {
border: 1px solid #a2a9b1;
clear: both;
font-size: 95%;
margin-top: 1.5em;
padding-top: 2px;
}
}
 
div.BoxenVerschmelzen div.NavFrame {
.navbox-list {
border: none;
line-height: 1.5em;
font-size: 100%;
border-color: #fdfdfd;   /* Must match background color */
margin: 0;
padding-top: 0;
}
}


/* cell spacing for navbox cells */
/*
tr + tr > .navbox-abovebelow,
* VERALTET: Ehemals [[Vorlage:Prettytable]], jetzt infolge von [[rev:48842]]
tr + tr > .navbox-group,
* Kopie der Klasse „wikitable“ aus mediawiki.legacy/shared.css bis auf die
tr + tr > .navbox-image,
* Einfärbung der Kopfzellen.
tr + tr > .navbox-list {    /* Borders above 2nd, 3rd, etc. rows */
* Die Existenz zweier Klassennamen ist aus [[:en:MediaWiki:Common.css]] geerbt,
border-top: 2px solid #fdfdfd; /* Must match background color */
* vgl. https://en.wikipedia.org/w/index.php?diff=26977467&oldid=26934973
* und https://en.wikipedia.org/w/index.php?diff=361917988&oldid=358750840.
* Es gab im Jahr 2007 einen Botlauf zur Umstellung der Vorlage auf CSS,
* dokumentiert unter [[Vorlage Diskussion:Prettytable/Bugs]] (gelöscht). Dabei
* wurde leider der „falsche“ Klassenname gewählt.
* Da die Vorlage keine farblichen Hervorhebungen hatte, es deshalb zahlreiche
* Einbindungen mit individuell eingefärbten Kopfzeilen gibt und die Einfärbung
* der Kopfzellen diese verdecken würde, wurde hier auf die Einfärbung der
* Kopfzellen verzichtet.
*/
.prettytable {
background-color: #FFFFFF;
border: 0px solid #9cacbf;
border-collapse: collapse;
  margin: 5px;
  border: 0px solid black;
  outline: 1px solid #9cacbf;
  outline-offset: 5px;
}
}
.navbox th,
.navbox-title {
background-color: #ccccff;      /* Level 1 color */
}
}
 
table.prettytable > * > tr > th,
.navbox-abovebelow,
table.prettytable > * > tr > td {
th.navbox-group,
border: 0px solid #9cacbf;
.navbox-subgroup .navbox-title {
padding: .2em .4em;
background-color: #ddddff;     /* Level 2 color */
}
}
 
table.prettytable > * > tr > th {
.navbox-subgroup .navbox-group,
/* background-color: #FFFFFF; */
.navbox-subgroup .navbox-abovebelow {
text-align: center;
background-color: #e6e6ff;     /* Level 3 color */
}
}
 
table.prettytable > caption {
.navbox-even {
font-weight: bold;
background-color: #f7f7f7;     /* Even row striping */
}
}


.navbox-odd {
.prettytableGoalie {
background-color: transparent; /* Odd row striping */
background-color: #FFFFFF;
border: 0px solid #ED6A0B;
border-collapse: collapse;
  margin: 5px;
  border: 0px solid black;
  outline: 1px solid #ED6A0B;
  outline-offset: 5px;
}
}
.navbox .hlist td dl,
.navbox .hlist td ol,
.navbox .hlist td ul,
.navbox td.hlist dl,
.navbox td.hlist ol,
.navbox td.hlist ul {
padding: 0.125em 0;      /* Adjust hlist padding in navboxes */
}
}
 
table.prettytableGoalie > * > tr > th,
/* Styling for JQuery makeCollapsible, matching that of collapseButton */
table.prettytableGoalie > * > tr > td {
.mw-parser-output .mw-collapsible-toggle {
border: 0px solid #ED6A0B;
font-weight: normal;
padding: .2em .4em;
/* @noflip */
text-align: right;
padding-right: 0.2em;
padding-left: 0.2em;
}
}
 
table.prettytableGoalie > * > tr > th {
.mw-collapsible-leftside-toggle .mw-collapsible-toggle {
/* background-color: #FFFFFF; */
/* @noflip */
text-align: center;
float: left;
/* @noflip */
text-align: left;
}
 
/* Infobox template style */
.infobox {
border: 1px solid #a2a9b1;
border-spacing: 3px;
background-color: #f8f9fa;
color: black;
/* @noflip */
margin: 0.5em 0 0.5em 1em;
padding: 0.2em;
/* @noflip */
float: right;
/* @noflip */
clear: right;
font-size: 88%;
line-height: 1.5em;
}
}
 
table.prettytableGoalie > caption {
.infobox caption {
font-size: 125%;
font-weight: bold;
font-weight: bold;
padding: 0.2em;
text-align: center;
}
}


.infobox td,
.prettytableRef {
.infobox th {
background-color: #FFFFFF;
vertical-align: top;
border: 0px solid #FFBF00;
/* @noflip */
text-align: left;
}
 
.infobox.bordered {
border-collapse: collapse;
border-collapse: collapse;
  margin: 5px;
  border: 0px solid black;
  outline: 1px solid #FFBF00;
  outline-offset: 5px;
}
}
.infobox.bordered td,
.infobox.bordered th {
border: 1px solid #a2a9b1;
}
}
 
table.prettytableRef > * > tr > th,
.infobox.bordered .borderless td,
table.prettytableRef > * > tr > td {
.infobox.bordered .borderless th {
border: 0px solid #FFBF00;
border: 0;
padding: .2em .4em;
}
}
 
table.prettytableRef > * > tr > th {
.infobox.sisterproject {
/* background-color: #FFFFFF; */
width: 20em;
text-align: center;
font-size: 90%;
}
}
 
table.prettytableRef > caption {
/* styles for bordered infobox with merged rows */
font-weight: bold;
.infobox.bordered .mergedtoprow td,
.infobox.bordered .mergedtoprow th {
border: 0;
border-top: 1px solid #a2a9b1;
/* @noflip */
border-right: 1px solid #a2a9b1;
}
}


.infobox.bordered .mergedrow td,
.infobox.bordered .mergedrow th {
border: 0;
/* @noflip */
border-right: 1px solid #a2a9b1;
}


/* Styles for geography infoboxes, eg countries,
.prettytableInfobox {
  country subdivisions, cities, etc.            */
background-color: #FFFFFF;
.infobox.geography {
border: 0px solid #FFFFFF;
border-collapse: collapse;
border-collapse: collapse;
line-height: 1.2em;
  margin: 5px;
font-size: 90%;
  border: 0px solid black;
  outline: 1px solid #FFFFFF;
  outline-offset: 5px;
}
}
.infobox.geography  td,
.infobox.geography  th {
border-top: 1px solid #a2a9b1;
padding: 0.4em 0.6em 0.4em 0.6em;
}
}
 
table.prettytableInfobox > * > tr > th,
.infobox.geography .mergedtoprow td,
table.prettytableInfobox > * > tr > td {
.infobox.geography .mergedtoprow th {
border: 0px solid #FFFFFF;
border-top: 1px solid #a2a9b1;
padding: .2em .4em;
padding: 0.4em 0.6em 0.2em 0.6em;
}
}
 
table.prettytableInfobox > * > tr > th {
.infobox.geography .mergedrow td,
/* background-color: #FFFFFF; */
.infobox.geography .mergedrow th {
text-align: center;
border: 0;
padding: 0 0.6em 0.2em 0.6em;
}
}
 
table.prettytableInfobox > caption {
.infobox.geography .mergedbottomrow td,
font-weight: bold;
.infobox.geography .mergedbottomrow th {
border-top: 0;
border-bottom: 1px solid #a2a9b1;
padding: 0 0.6em 0.4em 0.6em;
}
}


.infobox.geography .maptable td,
.prettytableHOF {
.infobox.geography .maptable th {
background-color: #FFFFFF;
border: 0;
border: 0px solid #EDC900;
padding: 0;
border-collapse: collapse;
  margin: 5px;
  border: 0px solid black;
  outline: 1px solid #EDC900;
  outline-offset: 5px;
}
}
/* Normal font styling for wikitable row headers with scope="row" tag */
.wikitable.plainrowheaders th[scope=row] {
font-weight: normal;
/* @noflip */
text-align: left;
}
}
 
table.prettytableHOF > * > tr > th,
/* Lists in wikitable data cells are always left-aligned */
table.prettytableHOF > * > tr > td {
.wikitable td ul,
border: 0px solid #EDC900;
.wikitable td ol,
padding: .2em .4em;
.wikitable td dl {
/* @noflip */
text-align: left;
}
}
 
table.prettytableHOF > * > tr > th {
/* ...unless they also use the hlist class */
/* background-color: #FFFFFF; */
.toc.hlist ul,
#toc.hlist ul,
.wikitable.hlist td ul,
.wikitable.hlist td ol,
.wikitable.hlist td dl {
text-align: inherit;
}
 
/* Icons for medialist templates [[Template:Listen]],
  [[Template:Multi-listen_start]], [[Template:Video]],
  [[Template:Multi-video_start]] */
/* TemplateStyles */
div.listenlist {
background: url("//upload.wikimedia.org/wikipedia/commons/4/47/Sound-icon.svg") no-repeat scroll 0 0 transparent;
background-size: 30px;
padding-left: 40px;
}
 
/* Fix for hieroglyphs specificity issue in infoboxes ([[phab:T43869]]) */
table.mw-hiero-table td {
vertical-align: middle;
}
 
/* Change the external link icon to an Adobe icon for all PDF files */
.mw-parser-output a[href$=".pdf"].external,
.mw-parser-output a[href*=".pdf?"].external,
.mw-parser-output a[href*=".pdf#"].external,
.mw-parser-output a[href$=".PDF"].external,
.mw-parser-output a[href*=".PDF?"].external,
.mw-parser-output a[href*=".PDF#"].external {
background: url("//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif") no-repeat right;
/* @noflip */
padding-right: 18px;
}
 
/* Messagebox templates */
.messagebox {
border: 1px solid #a2a9b1;
background-color: #f8f9fa;
width: 80%;
margin: 0 auto 1em auto;
padding: .2em;
}
 
.messagebox.merge {
border: 1px solid #c0b8cc;
background-color: #f0e5ff;
text-align: center;
text-align: center;
}
}
 
table.prettytableHOF > caption {
.messagebox.cleanup {
font-weight: bold;
border: 1px solid #9f9fff;
background-color: #efefff;
text-align: center;
}
}


.messagebox.standard-talk {
/*
border: 1px solid #c0c090;
* Zebra-Tabellen. Bei Verwendung zusammen mit „rowspan“ richtet sich die Farbe
background-color: #f8eaba;
* jeder Zelle nach der ersten Zeile, zu der die Zelle gehört.
margin: 4px auto;
*/
table.wikitable.zebra > tbody > :nth-child(even):not([class*="hintergrundfarbe"]) {
background: white;
}
}


/* For old WikiProject banners inside banner shells. */
/*
.mbox-inside .standard-talk,
* Klassen für die Ausrichtung von Bausteinen, Tabellen, mit „gallery“-Tags
.messagebox.nested-talk {
* realisierten Bildergalerien und weiteren Objekten.
border: 1px solid #c0c090;
* Vorsicht: Das MediaWiki-eigene CSS enthält Klassen mit den sehr ähnlichen
background-color: #f8eaba;
* Namen „floatleft“, „floatright“ und „center“, deren Definitionen sich aber
width: 100%;
* von den lokalen Definitionen unterscheiden.
margin: 2px 0;
* Für die Bedeutung der „noflip“-Kommentare siehe
padding: 2px;
* [[mw:ResourceLoader/Features#Flipping]].
}
*/


.messagebox.small {
/* @noflip */
width: 238px;
div.float-left,
font-size: 85%;
table.float-left,
/* @noflip */
ul.float-left,
float: right;
.float-left {
clear: both;
clear: left;
/* @noflip */
float: left;
margin: 0 0 1em 1em;
margin: 1em 1em 1em 0;
line-height: 1.25em;
}
}
 
/* @noflip */
.messagebox.small-talk {
div.float-right,
width: 238px;
table.float-right,
font-size: 85%;
ul.float-right,
/* @noflip */
.float-right {
clear: right;
float: right;
float: right;
clear: both;
margin: 1em 0 1em 1em;
/* @noflip */
margin: 0 0 1em 1em;
line-height: 1.25em;
background-color: #f8eaba;
}
}
 
div.centered,
/* Cell sizes for ambox/tmbox/imbox/cmbox/ombox/fmbox/dmbox message boxes */
table.centered,
th.mbox-text, td.mbox-text {   /* The message body cell(s) */
ul.centered,
border: none;
.centered {
/* @noflip */
margin-left: auto;
padding: 0.25em 0.9em;    /* 0.9em left/right */
margin-right: auto;
width: 100%;               /* Make all mboxes the same width regardless of text length */
}
}


td.mbox-image {                /* The left image cell */
/*
border: none;
* Obenbündige Textausrichtung in Tabellen. Wirkt nicht auf Kopfzellen und wurde
/* @noflip */
* unter anderem wegen Inkonsistenzen bei sortierbaren Tabellen nicht auf
padding: 2px 0 2px 0.9em;  /* 0.9em left, 0px right */
* Kopfzellen ausgeweitet.
text-align: center;
*/
.toptextcells > * > * > td {
vertical-align: top;
}
}


td.mbox-imageright {          /* The right image cell */
/*
border: none;
  * Farbdefinitionen für Rahmen und Hintergründe von Textbausteinen:
/* @noflip */
* [[Wikipedia:Textbausteine]]; Anpassungen für andere Skins sind optional.
padding: 2px 0.9em 2px 0; /* 0px left, 0.9em right */
* (Die Angaben der Rahmenstärke dienen der Bequemlichkeit, so dass man
text-align: center;
  * für dünne Rahmen nur noch „border-style“ angeben muss.)
}
*/
 
td.mbox-empty-cell {          /* An empty narrow cell */
border: none;
padding: 0;
width: 1px;
}
 
/* Article message box styles */
table.ambox {
margin: 0 10%;                  /* 10% = Will not overlap with other elements */
border: 1px solid #a2a9b1;
/* @noflip */
border-left: 10px solid #36c; /* Default "notice" blue */
background-color: #fbfbfb;
box-sizing: border-box;
}
 
table.ambox + table.ambox {      /* Single border between stacked boxes. */
margin-top: -1px;
}


.ambox th.mbox-text,
/* Wie Inhaltsverzeichnis (mediawiki.skinning/content.css) */
.ambox td.mbox-text {            /* The message body cell(s) */
.rahmenfarbe1 {
padding: 0.25em 0.5em;       /* 0.5em left/right */
border: 1px #a2a9b1;
}
}
 
/* Unauffällig, geringer Kontrast */
.ambox td.mbox-image {          /* The left image cell */
.rahmenfarbe2 {
/* @noflip */
border: 1px #eaecf0;
padding: 2px 0 2px 0.5em;   /* 0.5em left, 0px right */
}
}
 
/* „Rot“, auffällig */
.ambox td.mbox-imageright {      /* The right image cell */
.rahmenfarbe3 {
/* @noflip */
border: 1px #c00000;
padding: 2px 0.5em 2px 0;   /* 0px left, 0.5em right */
}
}
 
/* Neutrale Farbe, deutlich */
table.ambox-notice {
.rahmenfarbe4 {
/* @noflip */
border: 1px #88a;
border-left: 10px solid #36c;       /* Blue */
}
}
 
/* „Schwarz“, hoher Kontrast */
table.ambox-speedy {
.rahmenfarbe5 {
/* @noflip */
border: 1px #000;
border-left: 10px solid #b32424;   /* Red */
background-color: #fee7e6;          /* Pink */
}
}


table.ambox-delete {
/* Wie Inhaltsverzeichnis (mediawiki.skinning/content.css) */
/* @noflip */
table > * > tr.hintergrundfarbe1 > th,
border-left: 10px solid #b32424;   /* Red */
table > * > tr > th.hintergrundfarbe1,
table.hintergrundfarbe1,
.hintergrundfarbe1 {
background-color: #f8f9fa;
}
}
 
/* „Weiß“, für Nicht-Artikel-Seiten, neutral */
table.ambox-content {
table > * > tr.hintergrundfarbe2 > th,
/* @noflip */
table > * > tr > th.hintergrundfarbe2,
border-left: 10px solid #f28500;   /* Orange */
table.hintergrundfarbe2,
.hintergrundfarbe2 {
background-color: #fff;
}
}
 
/* „Gelb“, auffällig */
table.ambox-style {
table > * > tr.hintergrundfarbe3 > th,
/* @noflip */
table > * > tr > th.hintergrundfarbe3,
border-left: 10px solid #fc3;       /* Yellow */
table.hintergrundfarbe3,
.hintergrundfarbe3 {
background-color: #ffff40;
}
}
 
/* Sehr auffällig */
table.ambox-move {
table > * > tr.hintergrundfarbe4 > th,
/* @noflip */
table > * > tr > th.hintergrundfarbe4,
border-left: 10px solid #9932cc;   /* Purple */
table.hintergrundfarbe4,
.hintergrundfarbe4 {
background-color: #fa0;
}
}
 
/* Neutral, abgesetzt */
table.ambox-protection {
table > * > tr.hintergrundfarbe5 > th,
/* @noflip */
table > * > tr > th.hintergrundfarbe5,
border-left: 10px solid #a2a9b1;   /* Gray-gold */
table.hintergrundfarbe5,
.hintergrundfarbe5 {
background-color: #eaecf0;
}
}
 
/* Allgemein „bunt“, für Hervorhebungen und Unterscheidungen */
/* Image message box styles */
table > * > tr.hintergrundfarbe6 > th,
table.imbox {
table > * > tr > th.hintergrundfarbe6,
margin: 4px 10%;
table.hintergrundfarbe6,
border-collapse: collapse;
.hintergrundfarbe6 {
border: 3px solid #36c;    /* Default "notice" blue */
background-color: #b3b7ff;
background-color: #fbfbfb;
box-sizing: border-box;
}
}
 
/* Allgemein „bunt“, für Hervorhebungen und Unterscheidungen */
.imbox .mbox-text .imbox {  /* For imboxes inside imbox-text cells. */
table > * > tr.hintergrundfarbe7 > th,
margin: 0 -0.5em;      /* 0.9 - 0.5 = 0.4em left/right.        */
table > * > tr > th.hintergrundfarbe7,
display: block;         /* Fix for webkit to force 100% width.  */
table.hintergrundfarbe7,
.hintergrundfarbe7 {
background-color: #ffcbcb;
}
}
 
/* Allgemein „bunt“, für Hervorhebungen und Unterscheidungen */
.mbox-inside .imbox {       /* For imboxes inside other templates.  */
table > * > tr.hintergrundfarbe8 > th,
margin: 4px;
table > * > tr > th.hintergrundfarbe8,
table.hintergrundfarbe8,
.hintergrundfarbe8 {
background-color: #ffebad;
}
}
 
/* Allgemein „bunt“, für Hervorhebungen und Unterscheidungen */
table.imbox-notice {
table > * > tr.hintergrundfarbe9 > th,
border: 3px solid #36c;       /* Blue */
table > * > tr > th.hintergrundfarbe9,
table.hintergrundfarbe9,
.hintergrundfarbe9 {
background-color: #b9ffc5;
}
}


table.imbox-speedy {
/*
border: 3px solid #b32424;    /* Red */
* Metadaten, bspw. [[Hilfe:Personendaten|Personendaten]]; vgl.
background-color: #fee7e6;   /* Pink */
* [[MediaWiki:Gadget-Personendaten.css]].
* Der Klassenname „metadata“ wird in der englischen Wikipedia traditionell für
* einen anderen Zweck verwendet, nämlich für „Elemente in Artikeln, die nicht
* als Teil des eigentlichen Artikelinhalts angesehen werden“, aber auch nicht
* standardmäßig ausgeblendet sind, sondern nur in „alternativen Ansichten“,
* vgl. [[:en:Wikipedia:Catalogue of CSS classes]].
* Das führt zu Nebenwirkungen, zum Beispiel ignoriert der MediaViewer Bilder in
* Bereichen mit dieser Klasse, weil er davon ausgeht, dass es sich um einen
* Wartungsbaustein mit schmückenden Icons wie [[:en:Template:Refimprove]]
* handelt, vgl. [[phab:rEMMV21549d754747681a2b50b8763996b7abf0f4efd5]].
*/
.metadata {
display: none;
}
}


table.imbox-delete {
/* <noscript>-Emulation, vgl. [[phab:T47731]] */
border: 3px solid #b32424;   /* Red */
.client-js .noscript {
display: none;
}
}


table.imbox-content {
/*
border: 3px solid #f28500;   /* Orange */
* Skinabhängige absolute Positionierungen ausblenden
* Bitte [[MediaWiki Diskussion:Common.css/Archiv/1#Absolute Positionierungen]]
* beachten
*/
#mw-content-text #coordinates,
#mw-content-text #editcount,
#mw-content-text #shortcut,
body.ns-special #mw-content-text .specialpage-helplink {
display: none;
}
}


table.imbox-style {
/* +++++ 1. (b) FUSSNOTEN +++++ */
border: 3px solid #fc3;      /* Yellow */
}


table.imbox-move {
/* Vererbung von Hervorhebungen auf Einzelnachweise verhindern */
border: 3px solid #9932cc;   /* Purple */
sup.reference {
font-style: normal;
font-weight: normal;
}
}


table.imbox-protection {
/* Hochgestellte Buchstaben in der Einzelnachweiseliste kursiv setzen */
border: 3px solid #a2a9b1;   /* Gray-gold */
ol.references li a[href|="#cite_ref"] {
font-style: italic;
}
}


table.imbox-license {
/*
border: 3px solid #88a;      /* Dark gray */
* Verwendung der Schwesterprojektverweise in Einzelnachweisen:
background-color: #f7f8ff;   /* Light gray */
* [[:Kategorie:Vorlage:Schwesterprojektverweis]]
*/
ol.references li div.sisterproject {
display: inline;
}
}


table.imbox-featured {
/* +++++ 1. (c) HTML-ELEMENTE +++++ */
border: 3px solid #cba135;    /* Brown-gold */
}


/* Category message box styles */
/*
table.cmbox {
* Bei URLs, die auf unser Projekt und verwandte Projekte verweisen, den Pfeil
margin: 3px 10%;
* ausblenden. Dieser Pfeil dient nur dazu, auf externe Ziele hinzuweisen. Auf
border-collapse: collapse;
* den Einsatz der Klasse „plainlinks“ kann dadurch verzichtet werden.
border: 1px solid #a2a9b1;
* März 2016: Die hohe Selektorenspezifität ist für den Modern-Skin nötig.
background-color: #dfe8ff;    /* Default "notice" blue */
*/
box-sizing: border-box;
#mw-content-text a.external[href^="//de.wikipedia.org"],
#mw-content-text a.external[href^="http://de.wikipedia.org"],
#mw-content-text a.external[href^="https://de.wikipedia.org"],
#mw-content-text a.external[href^="//www.wikidata.org"],
#mw-content-text a.external[href^="http://www.wikidata.org"],
#mw-content-text a.external[href^="https://www.wikidata.org"],
#mw-content-text a.external[href^="//tools.wmflabs.org"],
#mw-content-text a.external[href^="http://tools.wmflabs.org"],
#mw-content-text a.external[href^="https://tools.wmflabs.org"] {
background-image: none;
padding-right: 0;
}
}


table.cmbox-notice {
/*
background-color: #d8e8ff;   /* Blue */
* Unterstrichelung für Abkürzungen weniger aufdringlich als vorgegeben, damit
* die Auszeichnungen nicht wegen Aufdringlichkeit entfernt werden.
* März 2016: Firefox >= 36 benutzt „text-decoration“, alle anderen Rendering-
* Engines benutzen „border-bottom“, vgl. Regel in mediawiki.legacy/shared.css,
* https://bugs.chromium.org/p/chromium/issues/detail?id=665898 sowie
* https://bugs.webkit.org/show_bug.cgi?id=58491
*/
abbr[title]:not(:hover),
.explain[title]:not(:hover) {
border-bottom-color: rgba(50%, 50%, 50%, .5);
text-decoration-color: rgba(50%, 50%, 50%, .5);
}
}


table.cmbox-speedy {
/* +++++ 2. ANPASSUNGEN DER BEDIENOBERFLÄCHE +++++ */
margin-top: 4px;
margin-bottom: 4px;
border: 4px solid #b32424;    /* Red */
background-color: #ffdbdb;    /* Pink */
}


table.cmbox-delete {
/* +++++ 2. (a) SEITENBEARBEITUNG UND HOCHLADEN +++++ */
background-color: #ffdbdb;    /* Pink */
}


table.cmbox-content {
/* Für [[MediaWiki:Missingcommentheader]] */
background-color: #ffe7ce;   /* Orange */
div#mw-missingcommentheader strong {
color: red;
}
}


table.cmbox-style {
/* Für [[MediaWiki:Missingsummary]] */
background-color: #fff9db;   /* Yellow */
div#mw-missingsummary {
background: #d3e1f2;
border: 1px solid #1a47ff;
margin: 1em auto;
padding: 1em;
width: 80%;
}
}


table.cmbox-move {
/*
background-color: #e4d8ff;   /* Purple */
* Falls bei der Seitenbearbeitung vergessen wurde, die Zusammenfassung
* auszufüllen
*/
.mw-summarymissed {
border: 5px solid red;
padding: 2px;
}
}


table.cmbox-protection {
/* Copyrightwarnung: [[MediaWiki:Wikimedia-copyrightwarning]] */
background-color: #efefe1;   /* Gray-gold */
div#editpage-copywarn {
background: #fff;
border: 1px solid #c00000;
margin: 1em 0;
}
}


/* Other pages message box styles */
/* Warnmeldung für gesperrte Titel: [[MediaWiki:Titleprotectedwarning]] */
table.ombox {
.mw-titleprotectedwarning {
margin: 4px 10%;
background: #eaecf0;
border-collapse: collapse;
border: 2px solid red;
border: 1px solid #a2a9b1;    /* Default "notice" gray */
padding: 1em;
background-color: #f8f9fa;
box-sizing: border-box;
}
}


table.ombox-notice {
/*
border: 1px solid #a2a9b1;    /* Gray */
* Warnmeldung bei der Bearbeitung von Seiten im MediaWiki-Namensraum:
}
* [[MediaWiki:Editinginterface]], [[MediaWiki:Translateinterface]]
 
*/
table.ombox-speedy {
.mw-editinginterface,
border: 2px solid #b32424;    /* Red */
.mw-translateinterface {
background-color: #fee7e6;   /* Pink */
background: #f8f9fa;
}
border: 1px solid #c00000;
 
padding: 2px;
table.ombox-delete {
border: 2px solid #b32424;   /* Red */
}
 
table.ombox-content {
border: 1px solid #f28500;   /* Orange */
}
}
 
.mw-editinginterface + .mw-translateinterface {
table.ombox-style {
border-top: none;
border: 1px solid #fc3;       /* Yellow */
margin-top: -8px;
}
}


table.ombox-move {
/* Gestaltung der Edittools-Leiste: [[MediaWiki:Onlyifediting.js]] */
border: 1px solid #9932cc;    /* Purple */
div#specialchars {
}
background: white;
 
table.ombox-protection {
border: 2px solid #a2a9b1;    /* Gray-gold */
}
 
/* Talk page message box styles */
table.tmbox {
margin: 4px 10%;
border-collapse: collapse;
border: 1px solid #c0c090;    /* Default "notice" gray-brown */
background-color: #f8eaba;
min-width: 80%;
box-sizing: border-box;
}
 
.tmbox.mbox-small {
min-width: 0;                /* reset the min-width of tmbox above        */
}
 
.mediawiki .mbox-inside .tmbox { /* For tmboxes inside other templates. The "mediawiki" class ensures that */
margin: 2px 0;              /* this declaration overrides other styles (including mbox-small above)  */
width: 100%;                /* For Safari and Opera */
}
 
.mbox-inside .tmbox.mbox-small { /* "small" tmboxes should not be small when  */
line-height: 1.5em;          /* also "nested", so reset styles that are  */
font-size: 100%;            /* set in "mbox-small" above.                */
}
 
table.tmbox-speedy {
border: 2px solid #b32424;    /* Red */
background-color: #fee7e6;    /* Pink */
}
 
table.tmbox-delete {
border: 2px solid #b32424;    /* Red */
}
 
table.tmbox-content {
border: 2px solid #f28500;    /* Orange */
}
 
table.tmbox-style {
border: 2px solid #fc3;      /* Yellow */
}
 
table.tmbox-move {
border: 2px solid #9932cc;    /* Purple */
}
 
table.tmbox-protection,
table.tmbox-notice {
border: 1px solid #c0c090;    /* Gray-brown */
}
 
/* Footer and header message box styles */
table.fmbox {
clear: both;
margin: 0.2em 0;
width: 100%;
border: 1px solid #a2a9b1;
border: 1px solid #a2a9b1;
background-color: #f8f9fa;    /* Default "system" gray */
margin-top: 3px;
box-sizing: border-box;
padding: 1px;
}
text-align: left;
 
table.fmbox-system {
background-color: #f8f9fa;
}
 
table.fmbox-warning {
border: 1px solid #bb7070;  /* Dark pink */
background-color: #ffdbdb;  /* Pink */
}
 
table.fmbox-editnotice {
background-color: transparent;
}
 
/* Div based "warning" style fmbox messages. */
div.mw-warning-with-logexcerpt,
div.mw-lag-warn-high,
div.mw-cascadeprotectedwarning,
div#mw-protect-cascadeon,
div.titleblacklist-warning,
div.locked-warning {
clear: both;
margin: 0.2em 0;
border: 1px solid #bb7070;
background-color: #ffdbdb;
padding: 0.25em 0.9em;
box-sizing: border-box;
}
}


/* These mbox-small classes must be placed after all other
/* [[Special:Upload]]: Höheres Feld für die Beschreibung */
  ambox/tmbox/ombox etc classes. "html body.mediawiki" is so
textarea#wpUploadDescription {
  they override "table.ambox + table.ambox" above. */
height: 20em;
html body.mediawiki .mbox-small {  /* For the "small=yes" option. */
/* @noflip */
clear: right;
/* @noflip */
float: right;
/* @noflip */
margin: 4px 0 4px 1em;
box-sizing: border-box;
width: 238px;
font-size: 88%;
line-height: 1.25em;
}
}


html body.mediawiki .mbox-small-left {  /* For the "small=left" option. */
/* +++++ 2. (b) ANPASSUNGEN FÜR DIE FLAGGED-REVISIONS-ERWEITERUNG +++++ */
/* @noflip */
margin: 4px 1em 4px 0;
box-sizing: border-box;
overflow: hidden;
width: 238px;
border-collapse: collapse;
font-size: 88%;
line-height: 1.25em;
}


/* Style for compact ambox */
/* Für den Abgleich: [[phab:diffusion/EFLR/browse/master/frontend/modules]] */
/* Hide the images */
.compact-ambox table .mbox-image,
.compact-ambox table .mbox-imageright,
.compact-ambox table .mbox-empty-cell {
display: none;
}


/* Remove borders, backgrounds, padding, etc. */
/* Flagged-Revisions-Backlog-Sitenotice */
.compact-ambox table.ambox {
.fr-watchlist-pending-notice {
background: transparent;
border: none;
border: none;
border-collapse: collapse;
background-color: transparent;
margin: 0 0 0 1.6em !important;
padding: 0 !important;
width: auto;
display: block;
}
body.mediawiki .compact-ambox table.mbox-small-left {
font-size: 100%;
width: auto;
margin: 0;
margin: 0;
padding: 0;
}
}


/* Style the text cell as a list item and remove its padding */
/* Standardmäßige Ausblendung der Flagged-Revisions-Kommentarbox */
.compact-ambox table .mbox-text {
.fr-comment-box {
padding: 0 !important;
display: none;
margin: 0 !important;
}
}


.compact-ambox table .mbox-text-span {
/* Hintergrund des Sichten-Links auf der Beobachtungsliste entfärben */
display: list-item;
.mw-fr-reviewlink {
line-height: 1.5em;
background: transparent;
list-style-type: square;
list-style-image: url(/w/skins/MonoBook/resources/images/bullet.svg);
}
}


.skin-vector .compact-ambox table .mbox-text-span {
/*
list-style-type: disc;
* Ausklappbarer Teil der Flagged-Revisions-Box im Vordergrund relativ
list-style-image: url(/w/skins/Vector/resources/skins.vector.styles/images/bullet-icon.svg);
* positionierter Vorlagen, vor allem [[Vorlage:Positionskarte]]; an
* #mw-fr-revisiondetails-wrapper statt div.flaggedrevs_short_details für IE 7:
* http://web.archive.org/web/therealcrisp.xs4all.nl/meuk/IE-zindexbug.html
*/
#mw-fr-revisiondetails-wrapper {
z-index: 1;
}
}


/* Allow for hiding text in compact form */
/*
.compact-ambox .hide-when-compact {
* Patrollink, Ausrufezeichen und Legendeneintrag ausblenden und Einträge auf
* [[Spezial:Neue Seiten]] entfärben, da das Feature hier nicht genutzt wird und
* dessen Optik zu sehr den gesichteten Versionen ähnelt; vgl. [[phab:T102818]]
*/
.patrollink,
ul.special .unpatrolled,
.mw-changeslist-legend .unpatrolled,
.mw-changeslist-legend-unpatrolled {
display: none;
display: none;
}
}
 
td.mw-enhanced-rc .unpatrolled {
/* Hide (formatting) elements from screen, but not from screenreaders */
visibility: hidden;
.visualhide {
position: absolute;
left: -10000px;
top: auto;
width: 1px;
height: 1px;
overflow: hidden;
}
}
 
.not-patrolled {
/* Remove underlines from certain links */
background-color: transparent;
.nounderlines a,
.IPA a:link, .IPA a:visited {
text-decoration: none !important;
}
}


/* Standard Navigationsleisten, aka box hiding thingy
/* +++++ 2. (c) UNSORTIERTE ANPASSUNGEN +++++ */
  from .de.  Documentation at [[Wikipedia:NavFrame]]. */
div.NavFrame {
margin: 0;
padding: 4px;
border: 1px solid #a2a9b1;
text-align: center;
border-collapse: collapse;
font-size: 95%;
}


div.NavFrame + div.NavFrame {
/*
border-top-style: none;
* Rollback-Knopf auf der Beobachtungsliste ausblenden, da er dort nur von sehr
border-top-style: hidden;
* beschränktem Nutzen ist und zu sehr vielen Reverts aus Versehen führt
*/
.mw-special-Watchlist .mw-rollback-link {
display: none;
}
}


div.NavFrame div.NavHead {
/*
line-height: 1.6em;
* Verhindere, dass Infoboxen etc. in den Inhalt von Kategorien hineinragen.
font-weight: bold;
* Das betrifft nur Kategorieseiten.
background-color: #ccf;
*/
position: relative;
div.mw-category-generated {
}
 
div.NavFrame p,
div.NavFrame div.NavContent,
div.NavFrame div.NavContent p {
font-size: 100%;
}
 
a.NavToggle {
position: absolute;
top: 0;
/* @noflip */
right: 3px;
font-weight: normal;
font-size: 90%;
}
 
/* Hatnotes and disambiguation notices */
.hatnote {
font-style: italic;
}
 
.hatnote i {
font-style: normal;
}
 
div.hatnote {
/* @noflip */
padding-left: 1.6em;
margin-bottom: 0.5em;
}
 
div.hatnote + div.hatnote {
margin-top: -0.5em;
}
 
/* Prevent line breaks in silly places where desired (nowrap)
  and links when we don't want them to (nowraplinks a) */
.nowrap,
.nowraplinks a {
white-space: nowrap;
}
 
.nowrap pre {
white-space: pre;
}
 
/* But allow wrapping where desired: */
.wrap,
.wraplinks a {
white-space: normal;
}
 
/* Increase the height of the image upload box */
#wpUploadDescription {
height: 13em;
}
 
/* Minimum thumb width */
.thumbinner {
min-width: 100px;
}
 
/* Prevent floating boxes from overlapping any category listings,
  file histories, edit previews, and edit [Show changes] views. */
#mw-subcategories, #mw-pages, #mw-category-media,
#filehistory, #wikiPreview, #wikiDiff {
clear: both;
clear: both;
}
}


/* Selectively hide headers in WikiProject banners */
/* [[Special:Search]]: Suchergebnisse aus anderssprachigen Wikipedien */
/* TemplateStyles */
.mw-search-interwiki-header {
.wpb .wpb-header {
border-top: 3px solid #c00000;
display: none;
}
}


.wpbs-inner .wpb .wpb-header {
/* +++++ 3. [[Wikipedia:Hauptseite|HAUPTSEITE]] +++++ */
display: table-row;
}


.wpbs-inner .wpb-outside {
/*
display: none;            /* hide things that should only display outside shells */
* Überschrift, Weiterleitungshinweis, Kategorie und Schwesterprojektverweise
}
* auf der Hauptseite verbergen
 
* Nicht in allen Skins vollständig wirksam; vgl. [[MediaWiki:Cologneblue.css]]
/* Styling for Abuse Filter tags */
*/
.mw-tag-markers {
.action-view.page-Wikipedia_Hauptseite h1.firstHeading,
font-style: italic;
.action-view.page-Wikipedia_Hauptseite #contentSub,
font-size: 90%;
.action-view.page-Wikipedia_Hauptseite #catlinks,
}
.page-Wikipedia_Hauptseite #p-wikibase-otherprojects {  
 
/* Hide stuff meant for accounts with special permissions. Made visible again in
  [[MediaWiki:Group-checkuser.css]], [[MediaWiki:Group-sysop.css]], [[MediaWiki:Group-patroller.css]],
  [[MediaWiki:Group-templateeditor.css]], [[MediaWiki:Group-extendedmover.css]],
  [[MediaWiki:Group-extendedconfirmed.css]], and [[Mediawiki:Group-autoconfirmed.css]]. */
.checkuser-show,
.sysop-show,
.patroller-show,
.templateeditor-show,
.extendedmover-show,
.extendedconfirmed-show,
.autoconfirmed-show,
.user-show {
display: none;
display: none;
}
}


/* Hide the redlink generated by {{Editnotice}},
/* [[Wikipedia Diskussion:Meinungsbilder/Neue Hauptseite/V5-2-css]], 2006 */
  this overrides the ".sysop-show { display: none; }" above that applies
#hauptseite h2 {
  to the same link as well. See [[phab:T45013]]
background: #d8e8ff;
 
border: 1px solid #8898bf;
  Hide the images in editnotices to keep them readable in VE view.
font-family: inherit; /* [[mw:Typography refresh]] */
  Long term, editnotices should become a core feature so that they can be designed responsive. */
font-size: 1em;
.ve-ui-mwNoticesPopupTool-item .editnotice-redlink,
font-weight: bold;
.ve-ui-mwNoticesPopupTool-item .mbox-image,
line-height: 1.5; /* [[mw:Typography refresh]] */
.ve-ui-mwNoticesPopupTool-item .mbox-imageright {
display: none !important;
}
 
/* Remove bullets when there are multiple edit page warnings */
ul.permissions-errors > li {
list-style: none none;
}
 
ul.permissions-errors {
margin: 0;
margin: 0;
padding: .1em 0;
}
}
 
#hauptseite .inhalt {
/* Generic class for Times-based serif, texhtml class for inline math */
background: #fff;
.times-serif,
border: 1px solid #8898bf;
span.texhtml {
border-top: 0;
font-family: "Nimbus Roman No9 L", "Times New Roman", Times, serif;
min-height: 0; /* IE 7 */
font-size: 118%;
padding: .3em .8em .4em;
line-height: 1;
}
}
 
#hauptseite .inhalt hr {
span.texhtml {
background: #8898bf;
white-space: nowrap;
color: #8898bf; /* IE 7 */
height: 1px;
margin: .5em 0;
}
}
 
#hauptseite .inhalt .mehr {
span.texhtml span.texhtml {
clear: both;
font-size: 100%;
font-size: 95%;
margin-top: .8em;
text-align: right;
}
}
 
.hauptseite-oben,
span.mwe-math-mathml-inline {
.hauptseite-links,
font-size: 118%;
.hauptseite-rechts {
margin-bottom: 1em;
}
}
 
.hauptseite-links {
/* Force tabular and lining display for digits and texhtml */
margin-right: .5em;
.digits,
.texhtml {
-moz-font-feature-settings: "lnum", "tnum", "kern" 0;
-webkit-font-feature-settings: "lnum", "tnum", "kern" 0;
font-feature-settings: "lnum", "tnum", "kern" 0;
font-variant-numeric: lining-nums tabular-nums;
font-kerning: none;
}
}
 
.hauptseite-rechts {
/* Make <math display="block"> be left aligned with one space indent for compatibility with style conventions */
margin-left: .5em;
.mwe-math-fallback-image-display,
.mwe-math-mathml-display {
margin-left: 1.6em !important;
margin-top: 0.6em;
margin-bottom: 0.6em;
}
}
 
.hauptseite-oben h2,
.mwe-math-mathml-display math {
.hauptseite-unten h2 {
display: inline;
text-align: center;
}
}
 
.hauptseite-oben .inhalt .portale {
/* Fix styling of transcluded prefindex tables */
font-weight: bold;
table#mw-prefixindex-list-table,
margin: .2em 0;
table#mw-prefixindex-nav-table {
width: 98%;
}
}
 
.hauptseite-oben .inhalt .intern {
/* Make it possible to hide checkboxes in <inputbox> */
font-size: 90%;
.inputbox-hidecheckboxes form .inputbox-element,
text-align: center;
.inputbox-hidecheckboxes .mw-ui-checkbox {
display: none !important;
}
 
/* Work-around for [[phab:T25965]] / [[phab:T100106]] (Kaltura advertisement) */
.k-player .k-attribution {
visibility: hidden;
}
}
 
.hauptseite-links h2,
/* Move 'play' button of video player to bottom left corner */
.hauptseite-rechts h2 {
.PopUpMediaTransform a .play-btn-large {
text-indent: .8em;
margin: 0;
top: auto;
right: auto;
bottom: 0;
left: 0;
}
}
 
#hauptseite-schwesterprojekte .inhalt a {
/* Force imgs in galleries to have borders by wrapping them in class=bordered-images */
font-weight: bold;
.bordered-images img {
border: solid #ddd 1px;
}
}


/* Gallery styles background changes are restricted to screen view. In printing we should avoid applying backgrounds. */
@media screen {
/* The backgrounds for galleries. */
#content .gallerybox div.thumb {
/* Light gray padding */
background-color: #f8f9fa;
}
/* Put a chequered background behind images, only visible if they have transparency.
'.filehistory a img' and '#file img:hover' are handled by MediaWiki core (as of 1.19) */
.gallerybox .thumb img {
background: #fff url(//upload.wikimedia.org/wikipedia/commons/5/5d/Checker-16x16.png) repeat;
}
/* But not on articles, user pages, portals or with opt-out. */
.ns-0 .gallerybox .thumb img,
.ns-2 .gallerybox .thumb img,
.ns-100 .gallerybox .thumb img,
.nochecker .gallerybox .thumb img {
background-image: none;
}
}


/* Display "From Wikipedia, the free encyclopedia" in skins that support it, do not apply to print mode */
#catlinks { display:block }
@media screen {
#siteSub {
display: block;
}
}


/* Hide FlaggedRevs notice UI when there are no pending changes */
#firstHeading {display: none;}
.flaggedrevs_draft_synced,
.flaggedrevs_stable_synced,
/* "Temporary" to remove links in sidebar T255381 */
#t-upload,
#n-shoplink {
display: none;
}

Version vom 12. Januar 2021, 18:09 Uhr

/*----------------------------------------------------------------------------------------------*/
/* ACHTUNG! Common.css enthält die gemeinsamen Skin-Anpassungen der deutschsprachigen Wikipedia */
/*----------------------------------------------------------------------------------------------*/

/*
 * Common.css ist in drei grundlegende Abschnitte gegliedert:
 *
 * 1. Anpassungen der Anzeige von editierbaren Seiteninhalten
 *    (a) Definitionen projektweiter Klassen und IDs
 *    (b) Fußnoten
 *    (c) HTML-Elemente
 * 2. Anpassungen der Bedienoberfläche
 *    (a) Seitenbearbeitung und Hochladen
 *    (b) Anpassungen für die Flagged-Revisions-Erweiterung
 *    (c) Unsortierte Anpassungen
 * 3. Hauptseite
 *
 * Jede Ergänzung/Änderung muss vorher jeweils für alle Skins auf Tauglichkeit
 * getestet werden, individuell per [[Special:Mypage/common.css]]! Ist hier
 * erstmal geändert, dauert es dank Cache eine Weile, bis die Änderungen bei
 * allen Nutzern sichtbar oder, bei Fehlern, korrigiert sind.
 *
 * Insbesondere innerhalb des Abschnitts 1. (a) ist die Reihenfolge der Regeln
 * wichtig, weil die dort definierten Klassen kombiniert werden können.
 */

/* +++++ 1. ANPASSUNGEN DER ANZEIGE VON EDITIERBAREN SEITENINHALTEN +++++ */

/* +++++ 1. (a) DEFINITIONEN PROJEKTWEITER KLASSEN UND IDS +++++ */

/* Personennamen in Kapitälchen */
.Person {
	font-variant: small-caps;
}

/*
 * Stylesheet-Ergänzung zu Standard-Navigationsleisten:
 * [[Hilfe:Navigationsleisten]], [[Vorlage:Navigationsleiste]]
 */
div.NavFrame {
	border: 1px solid #a2a9b1;
	clear: both;
	font-size: 95%;
	margin-top: 1.5em;
	min-height: 0; /* IE 7 */
	padding: 2px;
	text-align: center;
}
div.NavPic {
	float: left;
	padding: 2px;
}
div.NavHead {
	background: #eaecf0;
	font-weight: bold;
}
div.NavFrame:after {
	clear: both;
	content: "";
	display: block;
}

/*
 * Stylesheet für den „Ausklappen“-Button an Navigationsleisten, der in
 * [[MediaWiki:Common.js]] implementiert wird
 */
.NavToggle {
	float: right;
	font-size: x-small;
}

/* Automatisches Verschmelzen benachbarter Navigationsleisten */
div.NavFrame + div.NavFrame {
	margin-top: -1px;
}

/*
 * Verschmelzen mittels [[Vorlage:NaviBlock]]
 * Im Gegensatz zum automatischen Verschmelzen gibt es bei dieser Variante keine
 * Trennlinie zwischen den Leisten. Möglicherweise war dies ursprünglich nur ein
 * IE-6-Workaround, da das automatische Verschmelzen im IE 6 nicht funktioniert.
 */
div.BoxenVerschmelzen {
	border: 1px solid #a2a9b1;
	clear: both;
	font-size: 95%;
	margin-top: 1.5em;
	padding-top: 2px;
}
div.BoxenVerschmelzen div.NavFrame {
	border: none;
	font-size: 100%;
	margin: 0;
	padding-top: 0;
}

/*
 * VERALTET: Ehemals [[Vorlage:Prettytable]], jetzt infolge von [[rev:48842]]
 * Kopie der Klasse „wikitable“ aus mediawiki.legacy/shared.css bis auf die
 * Einfärbung der Kopfzellen.
 * Die Existenz zweier Klassennamen ist aus [[:en:MediaWiki:Common.css]] geerbt,
 * vgl. https://en.wikipedia.org/w/index.php?diff=26977467&oldid=26934973
 * und https://en.wikipedia.org/w/index.php?diff=361917988&oldid=358750840.
 * Es gab im Jahr 2007 einen Botlauf zur Umstellung der Vorlage auf CSS,
 * dokumentiert unter [[Vorlage Diskussion:Prettytable/Bugs]] (gelöscht). Dabei
 * wurde leider der „falsche“ Klassenname gewählt.
 * Da die Vorlage keine farblichen Hervorhebungen hatte, es deshalb zahlreiche
 * Einbindungen mit individuell eingefärbten Kopfzeilen gibt und die Einfärbung
 * der Kopfzellen diese verdecken würde, wurde hier auf die Einfärbung der
 * Kopfzellen verzichtet.
 */
.prettytable {
	background-color: #FFFFFF;
	border: 0px solid #9cacbf;
	border-collapse: collapse;
  margin: 5px;
  border: 0px solid black;
  outline: 1px solid #9cacbf;
  outline-offset: 5px;
}
}
table.prettytable > * > tr > th,
table.prettytable > * > tr > td {
	border: 0px solid #9cacbf;
	padding: .2em .4em;
}
table.prettytable > * > tr > th {
	/* background-color: #FFFFFF; */
	text-align: center;
}
table.prettytable > caption {
	font-weight: bold;
}

.prettytableGoalie {
	background-color: #FFFFFF;
	border: 0px solid #ED6A0B;
	border-collapse: collapse;
  margin: 5px;
  border: 0px solid black;
  outline: 1px solid #ED6A0B;
  outline-offset: 5px;
}
}
table.prettytableGoalie > * > tr > th,
table.prettytableGoalie > * > tr > td {
	border: 0px solid #ED6A0B;
	padding: .2em .4em;
}
table.prettytableGoalie > * > tr > th {
	/* background-color: #FFFFFF; */
	text-align: center;
}
table.prettytableGoalie > caption {
	font-weight: bold;
}

.prettytableRef {
	background-color: #FFFFFF;
	border: 0px solid #FFBF00;
	border-collapse: collapse;
  margin: 5px;
  border: 0px solid black;
  outline: 1px solid #FFBF00;
  outline-offset: 5px;
}
}
table.prettytableRef > * > tr > th,
table.prettytableRef > * > tr > td {
	border: 0px solid #FFBF00;
	padding: .2em .4em;
}
table.prettytableRef > * > tr > th {
	/* background-color: #FFFFFF; */
	text-align: center;
}
table.prettytableRef > caption {
	font-weight: bold;
}


.prettytableInfobox {
	background-color: #FFFFFF;
	border: 0px solid #FFFFFF;
	border-collapse: collapse;
  margin: 5px;
  border: 0px solid black;
  outline: 1px solid #FFFFFF;
  outline-offset: 5px;
}
}
table.prettytableInfobox > * > tr > th,
table.prettytableInfobox > * > tr > td {
	border: 0px solid #FFFFFF;
	padding: .2em .4em;
}
table.prettytableInfobox > * > tr > th {
	/* background-color: #FFFFFF; */
	text-align: center;
}
table.prettytableInfobox > caption {
	font-weight: bold;
}

.prettytableHOF {
	background-color: #FFFFFF;
	border: 0px solid #EDC900;
	border-collapse: collapse;
  margin: 5px;
  border: 0px solid black;
  outline: 1px solid #EDC900;
  outline-offset: 5px;
}
}
table.prettytableHOF > * > tr > th,
table.prettytableHOF > * > tr > td {
	border: 0px solid #EDC900;
	padding: .2em .4em;
}
table.prettytableHOF > * > tr > th {
	/* background-color: #FFFFFF; */
	text-align: center;
}
table.prettytableHOF > caption {
	font-weight: bold;
}

/*
 * Zebra-Tabellen. Bei Verwendung zusammen mit „rowspan“ richtet sich die Farbe
 * jeder Zelle nach der ersten Zeile, zu der die Zelle gehört.
 */
table.wikitable.zebra > tbody > :nth-child(even):not([class*="hintergrundfarbe"]) {
	background: white;
}

/*
 * Klassen für die Ausrichtung von Bausteinen, Tabellen, mit „gallery“-Tags
 * realisierten Bildergalerien und weiteren Objekten.
 * Vorsicht: Das MediaWiki-eigene CSS enthält Klassen mit den sehr ähnlichen
 * Namen „floatleft“, „floatright“ und „center“, deren Definitionen sich aber
 * von den lokalen Definitionen unterscheiden.
 * Für die Bedeutung der „noflip“-Kommentare siehe
 * [[mw:ResourceLoader/Features#Flipping]].
 */

/* @noflip */
div.float-left,
table.float-left,
ul.float-left,
.float-left {
	clear: left;
	float: left;
	margin: 1em 1em 1em 0;
}
/* @noflip */
div.float-right,
table.float-right,
ul.float-right,
.float-right {
	clear: right;
	float: right;
	margin: 1em 0 1em 1em;
}
div.centered,
table.centered,
ul.centered,
.centered {
	margin-left: auto;
	margin-right: auto;
}

/*
 * Obenbündige Textausrichtung in Tabellen. Wirkt nicht auf Kopfzellen und wurde
 * unter anderem wegen Inkonsistenzen bei sortierbaren Tabellen nicht auf
 * Kopfzellen ausgeweitet.
 */
.toptextcells > * > * > td {
	vertical-align: top;
}

/*
 * Farbdefinitionen für Rahmen und Hintergründe von Textbausteinen:
 * [[Wikipedia:Textbausteine]]; Anpassungen für andere Skins sind optional.
 * (Die Angaben der Rahmenstärke dienen der Bequemlichkeit, so dass man
 * für dünne Rahmen nur noch „border-style“ angeben muss.)
 */

/* Wie Inhaltsverzeichnis (mediawiki.skinning/content.css) */
.rahmenfarbe1 {
	border: 1px #a2a9b1;
}
/* Unauffällig, geringer Kontrast */
.rahmenfarbe2 {
	border: 1px #eaecf0;
}
/* „Rot“, auffällig */
.rahmenfarbe3 {
	border: 1px #c00000;
}
/* Neutrale Farbe, deutlich */
.rahmenfarbe4 {
	border: 1px #88a;
}
/* „Schwarz“, hoher Kontrast */
.rahmenfarbe5 {
	border: 1px #000;
}

/* Wie Inhaltsverzeichnis (mediawiki.skinning/content.css) */
table > * > tr.hintergrundfarbe1 > th,
table > * > tr > th.hintergrundfarbe1,
table.hintergrundfarbe1,
.hintergrundfarbe1 {
	background-color: #f8f9fa;
}
/* „Weiß“, für Nicht-Artikel-Seiten, neutral */
table > * > tr.hintergrundfarbe2 > th,
table > * > tr > th.hintergrundfarbe2,
table.hintergrundfarbe2,
.hintergrundfarbe2 {
	background-color: #fff;
}
/* „Gelb“, auffällig */
table > * > tr.hintergrundfarbe3 > th,
table > * > tr > th.hintergrundfarbe3,
table.hintergrundfarbe3,
.hintergrundfarbe3 {
	background-color: #ffff40;
}
/* Sehr auffällig */
table > * > tr.hintergrundfarbe4 > th,
table > * > tr > th.hintergrundfarbe4,
table.hintergrundfarbe4,
.hintergrundfarbe4 {
	background-color: #fa0;
}
/* Neutral, abgesetzt */
table > * > tr.hintergrundfarbe5 > th,
table > * > tr > th.hintergrundfarbe5,
table.hintergrundfarbe5,
.hintergrundfarbe5 {
	background-color: #eaecf0;
}
/* Allgemein „bunt“, für Hervorhebungen und Unterscheidungen */
table > * > tr.hintergrundfarbe6 > th,
table > * > tr > th.hintergrundfarbe6,
table.hintergrundfarbe6,
.hintergrundfarbe6 {
	background-color: #b3b7ff;
}
/* Allgemein „bunt“, für Hervorhebungen und Unterscheidungen */
table > * > tr.hintergrundfarbe7 > th,
table > * > tr > th.hintergrundfarbe7,
table.hintergrundfarbe7,
.hintergrundfarbe7 {
	background-color: #ffcbcb;
}
/* Allgemein „bunt“, für Hervorhebungen und Unterscheidungen */
table > * > tr.hintergrundfarbe8 > th,
table > * > tr > th.hintergrundfarbe8,
table.hintergrundfarbe8,
.hintergrundfarbe8 {
	background-color: #ffebad;
}
/* Allgemein „bunt“, für Hervorhebungen und Unterscheidungen */
table > * > tr.hintergrundfarbe9 > th,
table > * > tr > th.hintergrundfarbe9,
table.hintergrundfarbe9,
.hintergrundfarbe9 {
	background-color: #b9ffc5;
}

/*
 * Metadaten, bspw. [[Hilfe:Personendaten|Personendaten]]; vgl.
 * [[MediaWiki:Gadget-Personendaten.css]].
 * Der Klassenname „metadata“ wird in der englischen Wikipedia traditionell für
 * einen anderen Zweck verwendet, nämlich für „Elemente in Artikeln, die nicht
 * als Teil des eigentlichen Artikelinhalts angesehen werden“, aber auch nicht
 * standardmäßig ausgeblendet sind, sondern nur in „alternativen Ansichten“,
 * vgl. [[:en:Wikipedia:Catalogue of CSS classes]].
 * Das führt zu Nebenwirkungen, zum Beispiel ignoriert der MediaViewer Bilder in
 * Bereichen mit dieser Klasse, weil er davon ausgeht, dass es sich um einen
 * Wartungsbaustein mit schmückenden Icons wie [[:en:Template:Refimprove]]
 * handelt, vgl. [[phab:rEMMV21549d754747681a2b50b8763996b7abf0f4efd5]].
 */
.metadata {
	display: none;
}

/* <noscript>-Emulation, vgl. [[phab:T47731]] */
.client-js .noscript {
	display: none;
}

/*
 * Skinabhängige absolute Positionierungen ausblenden
 * Bitte [[MediaWiki Diskussion:Common.css/Archiv/1#Absolute Positionierungen]]
 * beachten
 */
#mw-content-text #coordinates,
#mw-content-text #editcount,
#mw-content-text #shortcut,
body.ns-special #mw-content-text .specialpage-helplink {
	display: none;
}

/* +++++ 1. (b) FUSSNOTEN +++++ */

/* Vererbung von Hervorhebungen auf Einzelnachweise verhindern */
sup.reference {
	font-style: normal;
	font-weight: normal;
}

/* Hochgestellte Buchstaben in der Einzelnachweiseliste kursiv setzen */
ol.references li a[href|="#cite_ref"] {
	font-style: italic;
}

/*
 * Verwendung der Schwesterprojektverweise in Einzelnachweisen:
 * [[:Kategorie:Vorlage:Schwesterprojektverweis]]
 */
ol.references li div.sisterproject {
	display: inline;
}

/* +++++ 1. (c) HTML-ELEMENTE +++++ */

/*
 * Bei URLs, die auf unser Projekt und verwandte Projekte verweisen, den Pfeil
 * ausblenden. Dieser Pfeil dient nur dazu, auf externe Ziele hinzuweisen. Auf
 * den Einsatz der Klasse „plainlinks“ kann dadurch verzichtet werden.
 * März 2016: Die hohe Selektorenspezifität ist für den Modern-Skin nötig.
 */
#mw-content-text a.external[href^="//de.wikipedia.org"],
#mw-content-text a.external[href^="http://de.wikipedia.org"],
#mw-content-text a.external[href^="https://de.wikipedia.org"],
#mw-content-text a.external[href^="//www.wikidata.org"],
#mw-content-text a.external[href^="http://www.wikidata.org"],
#mw-content-text a.external[href^="https://www.wikidata.org"],
#mw-content-text a.external[href^="//tools.wmflabs.org"],
#mw-content-text a.external[href^="http://tools.wmflabs.org"],
#mw-content-text a.external[href^="https://tools.wmflabs.org"] {
	background-image: none;
	padding-right: 0;
}

/*
 * Unterstrichelung für Abkürzungen weniger aufdringlich als vorgegeben, damit
 * die Auszeichnungen nicht wegen Aufdringlichkeit entfernt werden.
 * März 2016: Firefox >= 36 benutzt „text-decoration“, alle anderen Rendering-
 * Engines benutzen „border-bottom“, vgl. Regel in mediawiki.legacy/shared.css,
 * https://bugs.chromium.org/p/chromium/issues/detail?id=665898 sowie
 * https://bugs.webkit.org/show_bug.cgi?id=58491
 */
abbr[title]:not(:hover),
.explain[title]:not(:hover) {
	border-bottom-color: rgba(50%, 50%, 50%, .5);
	text-decoration-color: rgba(50%, 50%, 50%, .5);
}

/* +++++ 2. ANPASSUNGEN DER BEDIENOBERFLÄCHE +++++ */

/* +++++ 2. (a) SEITENBEARBEITUNG UND HOCHLADEN +++++ */

/* Für [[MediaWiki:Missingcommentheader]] */
div#mw-missingcommentheader strong {
	color: red;
}

/* Für [[MediaWiki:Missingsummary]] */
div#mw-missingsummary {
	background: #d3e1f2;
	border: 1px solid #1a47ff;
	margin: 1em auto;
	padding: 1em;
	width: 80%;
}

/*
 * Falls bei der Seitenbearbeitung vergessen wurde, die Zusammenfassung
 * auszufüllen
 */
.mw-summarymissed {
	border: 5px solid red;
	padding: 2px;
}

/* Copyrightwarnung: [[MediaWiki:Wikimedia-copyrightwarning]] */
div#editpage-copywarn {
	background: #fff;
	border: 1px solid #c00000;
	margin: 1em 0;
}

/* Warnmeldung für gesperrte Titel: [[MediaWiki:Titleprotectedwarning]] */
.mw-titleprotectedwarning {
	background: #eaecf0;
	border: 2px solid red;
	padding: 1em;
}

/*
 * Warnmeldung bei der Bearbeitung von Seiten im MediaWiki-Namensraum:
 * [[MediaWiki:Editinginterface]], [[MediaWiki:Translateinterface]]
 */
.mw-editinginterface,
.mw-translateinterface {
	background: #f8f9fa;
	border: 1px solid #c00000;
	padding: 2px;
}
.mw-editinginterface + .mw-translateinterface {
	border-top: none;
	margin-top: -8px;
}

/* Gestaltung der Edittools-Leiste: [[MediaWiki:Onlyifediting.js]] */
div#specialchars {
	background: white;
	border: 1px solid #a2a9b1;
	margin-top: 3px;
	padding: 1px;
	text-align: left;
}

/* [[Special:Upload]]: Höheres Feld für die Beschreibung */
textarea#wpUploadDescription {
	height: 20em;
}

/* +++++ 2. (b) ANPASSUNGEN FÜR DIE FLAGGED-REVISIONS-ERWEITERUNG +++++ */

/* Für den Abgleich: [[phab:diffusion/EFLR/browse/master/frontend/modules]] */

/* Flagged-Revisions-Backlog-Sitenotice */
.fr-watchlist-pending-notice {
	background: transparent;
	border: none;
	margin: 0;
	padding: 0;
}

/* Standardmäßige Ausblendung der Flagged-Revisions-Kommentarbox */
.fr-comment-box {
	display: none;
}

/* Hintergrund des Sichten-Links auf der Beobachtungsliste entfärben */
.mw-fr-reviewlink {
	background: transparent;
}

/*
 * Ausklappbarer Teil der Flagged-Revisions-Box im Vordergrund relativ
 * positionierter Vorlagen, vor allem [[Vorlage:Positionskarte]]; an
 * #mw-fr-revisiondetails-wrapper statt div.flaggedrevs_short_details für IE 7:
 * http://web.archive.org/web/therealcrisp.xs4all.nl/meuk/IE-zindexbug.html
 */
#mw-fr-revisiondetails-wrapper {
	z-index: 1;
}

/*
 * Patrollink, Ausrufezeichen und Legendeneintrag ausblenden und Einträge auf
 * [[Spezial:Neue Seiten]] entfärben, da das Feature hier nicht genutzt wird und
 * dessen Optik zu sehr den gesichteten Versionen ähnelt; vgl. [[phab:T102818]]
 */
.patrollink,
ul.special .unpatrolled,
.mw-changeslist-legend .unpatrolled,
.mw-changeslist-legend-unpatrolled {
	display: none;
}
td.mw-enhanced-rc .unpatrolled {
	visibility: hidden;
}
.not-patrolled {
	background-color: transparent;
}

/* +++++ 2. (c) UNSORTIERTE ANPASSUNGEN +++++ */

/*
 * Rollback-Knopf auf der Beobachtungsliste ausblenden, da er dort nur von sehr
 * beschränktem Nutzen ist und zu sehr vielen Reverts aus Versehen führt
 */
.mw-special-Watchlist .mw-rollback-link {
	display: none;
}

/*
 * Verhindere, dass Infoboxen etc. in den Inhalt von Kategorien hineinragen.
 * Das betrifft nur Kategorieseiten.
 */
div.mw-category-generated {
	clear: both;
}

/* [[Special:Search]]: Suchergebnisse aus anderssprachigen Wikipedien */
.mw-search-interwiki-header {
	border-top: 3px solid #c00000;
}

/* +++++ 3. [[Wikipedia:Hauptseite|HAUPTSEITE]] +++++ */

/*
 * Überschrift, Weiterleitungshinweis, Kategorie und Schwesterprojektverweise
 * auf der Hauptseite verbergen
 * Nicht in allen Skins vollständig wirksam; vgl. [[MediaWiki:Cologneblue.css]]
 */
.action-view.page-Wikipedia_Hauptseite h1.firstHeading,
.action-view.page-Wikipedia_Hauptseite #contentSub,
.action-view.page-Wikipedia_Hauptseite #catlinks,
.page-Wikipedia_Hauptseite #p-wikibase-otherprojects { 
	display: none;
}

/* [[Wikipedia Diskussion:Meinungsbilder/Neue Hauptseite/V5-2-css]], 2006 */
#hauptseite h2 {
	background: #d8e8ff;
	border: 1px solid #8898bf;
	font-family: inherit; /* [[mw:Typography refresh]] */
	font-size: 1em;
	font-weight: bold;
	line-height: 1.5; /* [[mw:Typography refresh]] */
	margin: 0;
	padding: .1em 0;
}
#hauptseite .inhalt {
	background: #fff;
	border: 1px solid #8898bf;
	border-top: 0;
	min-height: 0; /* IE 7 */
	padding: .3em .8em .4em;
}
#hauptseite .inhalt hr {
	background: #8898bf;
	color: #8898bf; /* IE 7 */
	height: 1px;
	margin: .5em 0;
}
#hauptseite .inhalt .mehr {
	clear: both;
	font-size: 95%;
	margin-top: .8em;
	text-align: right;
}
.hauptseite-oben,
.hauptseite-links,
.hauptseite-rechts {
	margin-bottom: 1em;
}
.hauptseite-links {
	margin-right: .5em;
}
.hauptseite-rechts {
	margin-left: .5em;
}
.hauptseite-oben h2,
.hauptseite-unten h2 {
	text-align: center;
}
.hauptseite-oben .inhalt .portale {
	font-weight: bold;
	margin: .2em 0;
}
.hauptseite-oben .inhalt .intern {
	font-size: 90%;
	text-align: center;
}
.hauptseite-links h2,
.hauptseite-rechts h2 {
	text-indent: .8em;
}
#hauptseite-schwesterprojekte .inhalt a {
	font-weight: bold;
}


#catlinks { display:block }

#firstHeading {display: none;}