Tag: Undo |
|||
Line 1: | Line 1: | ||
+ | /* CSS placed here will be applied to all skins */ |
||
− | /* Das folgende CSS wird für alle Benutzeroberflächen geladen. */ |
||
+ | /* Definition of Prime-Color-colors. To change colors, simply update |
||
− | |||
+ | the color codes. */ |
||
− | /* Definition der Prime-Color-Farben. Zum Ändern der Farben, einfach den Farbcode anpassen. */ |
||
:root { |
:root { |
||
--prime-color: #bfd7ea; |
--prime-color: #bfd7ea; |
||
Line 9: | Line 9: | ||
+ | /* the following applies the prime-color to the body's background */ |
||
− | /* Die folgenden Zeile beschreibt die Farbgebung des Bodys der Internetseite. */ |
||
body { |
body { |
||
Line 16: | Line 16: | ||
− | /* |
+ | /* All classes from here to the next comment below, style the Infoxbox */ |
.Infobox { |
.Infobox { |
||
Line 61: | Line 61: | ||
} |
} |
||
− | /* |
+ | /* The following adapts the h2 headings of the skins "Vector" and "Cosmos" */ |
.vector-body h2 { |
.vector-body h2 { |
||
Line 75: | Line 75: | ||
} |
} |
||
+ | h2#mw-toc-heading { |
||
− | #content h2 { |
||
− | background: |
+ | background: none; |
} |
} |
Revision as of 09:33, 5 October 2023
/* CSS placed here will be applied to all skins */
/* Definition of Prime-Color-colors. To change colors, simply update
the color codes. */
:root {
--prime-color: #bfd7ea;
--prime-color-light: #dbe8f3;
}
/* the following applies the prime-color to the body's background */
body {
background:var(--prime-color);
}
/* All classes from here to the next comment below, style the Infoxbox */
.Infobox {
padding: 0px;
clear: right;
float: right;
font-weight: inherit;
margin: 0 0 1em 1em;
}
.mw-parser-output .Infobox {
width: 23em;
line-height: 135%;
}
.mw-parser-output .Infobox td:not([colspan]) ul {
list-style: none none;
margin: 0;
}
.Infobox > tr > th, .Infobox > tr > td, .Infobox > * > tr > th, .Infobox > * > tr > td {
border: none;
}
.Infobox td:nth-child(1) {
background: var(--prime-color-light);
width: 7em;
vertical-align: top;
text-align: left;
padding-top: 0.5rem;
}
body .Infobox > tr > th, body .Infobox > tr > td, body .Infobox > * > tr > th {
background-color: #eaecf0;
text-align: center;
}
}
.mw-content-ltr ul, .mw-content-rtl .mw-content-ltr ul {
list-style: none none;
margin: 0.3em;
padding: 0;
}
/* The following adapts the h2 headings of the skins "Vector" and "Cosmos" */
.vector-body h2 {
margin-top: 1em;
font-size: 1.5em;
padding: 0.1em;
background: var(--prime-color);
}
.mw-body-content h2 {
padding: 0.1em;
background: var(--prime-color);
}
h2#mw-toc-heading {
background: none;
}