MediaWiki:Common.css: Unterschied zwischen den Versionen
Keine Bearbeitungszusammenfassung Markierung: Zurückgesetzt |
Änderung 180 von Beeventionmanual (Diskussion) rückgängig gemacht. |
||
| Zeile 1: | Zeile 1: | ||
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */ | |||
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap'); | |||
/* Basis – alles auf Poppins setzen */ | |||
body, | |||
body.skin-vector, | |||
body.skin-minerva, | |||
#content, | |||
#mw-content-text, | |||
.mw-body, | |||
.mw-body-content, | |||
.mw-parser-output, | |||
p, | |||
li, | |||
a, | |||
table, | |||
td, | |||
th, | |||
.navbox, | |||
.toc, | |||
#p-navigation, | |||
.vector-menu, | |||
.minerva-navigation-drawer, | |||
#footer, | |||
#catlinks, | |||
#mw-panel, | |||
div, | |||
span, | |||
ul, | |||
ol, | |||
input, | |||
textarea, | |||
select, | |||
button, | |||
label, | |||
caption { | |||
font-family: 'Poppins', sans-serif !important; | |||
} | |||
/* Alle Überschriften */ | |||
h1, h2, h3, h4, h5, h6, | |||
.mw-headline, | |||
.firstHeading, | |||
.page-title { | |||
font-family: 'Poppins', sans-serif !important; | |||
font-weight: 600 !important; | |||
} | |||
/* Optional: Gewicht für Fließtext leichter */ | |||
p, li, td, th { | |||
font-weight: 300 !important; | |||
} | |||
/* Inhaltsverzeichnis */ | |||
.toc, .tocnumber, .toctext { | |||
font-family: 'Poppins', sans-serif !important; | |||
} | |||
h1.firstHeading { | |||
display: none; | |||
} | |||
/* Einheitlicher Hintergrund für ALLE Bilder */ | |||
img { | |||
background-color: rgb(220, 220, 220) !important; | |||
padding: 2px; | |||
border-radius: 4px; | |||
} | |||
/* Hintergrund für Bilder in Galerieansicht */ | |||
.gallerybox .thumb, | |||
.gallerybox .thumb img, | |||
.thumbinner, | |||
.thumbinner img { | |||
background-color: rgb(220, 220, 220) !important; | |||
} | |||
#custom-langbar { | #custom-langbar { | ||
background: #f8f9fa; | |||
padding: 4px 8px; | |||
text-align: center; | |||
border-bottom: 1px solid #ccc; | |||
} | } | ||
#custom-langbar a { | #custom-langbar a { | ||
margin: 0 8px; | |||
text-decoration: none; | |||
color: #0645ad; | |||
font-weight: normal; | |||
} | } | ||
#custom-langbar a.active-lang { | #custom-langbar a.active-lang { | ||
font-weight: bold; | |||
text-decoration: underline; | |||
} | } | ||
Version vom 8. August 2025, 09:52 Uhr
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
/* Basis – alles auf Poppins setzen */
body,
body.skin-vector,
body.skin-minerva,
#content,
#mw-content-text,
.mw-body,
.mw-body-content,
.mw-parser-output,
p,
li,
a,
table,
td,
th,
.navbox,
.toc,
#p-navigation,
.vector-menu,
.minerva-navigation-drawer,
#footer,
#catlinks,
#mw-panel,
div,
span,
ul,
ol,
input,
textarea,
select,
button,
label,
caption {
font-family: 'Poppins', sans-serif !important;
}
/* Alle Überschriften */
h1, h2, h3, h4, h5, h6,
.mw-headline,
.firstHeading,
.page-title {
font-family: 'Poppins', sans-serif !important;
font-weight: 600 !important;
}
/* Optional: Gewicht für Fließtext leichter */
p, li, td, th {
font-weight: 300 !important;
}
/* Inhaltsverzeichnis */
.toc, .tocnumber, .toctext {
font-family: 'Poppins', sans-serif !important;
}
h1.firstHeading {
display: none;
}
/* Einheitlicher Hintergrund für ALLE Bilder */
img {
background-color: rgb(220, 220, 220) !important;
padding: 2px;
border-radius: 4px;
}
/* Hintergrund für Bilder in Galerieansicht */
.gallerybox .thumb,
.gallerybox .thumb img,
.thumbinner,
.thumbinner img {
background-color: rgb(220, 220, 220) !important;
}
#custom-langbar {
background: #f8f9fa;
padding: 4px 8px;
text-align: center;
border-bottom: 1px solid #ccc;
}
#custom-langbar a {
margin: 0 8px;
text-decoration: none;
color: #0645ad;
font-weight: normal;
}
#custom-langbar a.active-lang {
font-weight: bold;
text-decoration: underline;
}