MediaWiki:Common.css: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Die Seite wurde neu angelegt: „→Das folgende CSS wird für alle Benutzeroberflächen geladen.: →=== Source Sans Pro von Google Fonts importieren ===: @import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;600&display=swap'); →=== Standardschrift für Fließtext ===: body { font-family: 'Source Sans Pro', sans-serif; font-weight: 300; →Light: font-size: 16px; line-height: 1.6; color: #111; } /* === Überschriften (Semibold) =…“ |
(kein Unterschied)
|
Version vom 15. April 2025, 13:58 Uhr
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
/* === Source Sans Pro von Google Fonts importieren === */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;600&display=swap');
/* === Standardschrift für Fließtext === */
body {
font-family: 'Source Sans Pro', sans-serif;
font-weight: 300; /* Light */
font-size: 16px;
line-height: 1.6;
color: #111;
}
/* === Überschriften (Semibold) === */
h1, h2, h3, h4, h5, h6 {
font-family: 'Source Sans Pro', sans-serif;
font-weight: 600; /* Semibold */
color: #004C93;
}
/* === Links innerhalb des Wikis === */
a {
font-family: 'Source Sans Pro', sans-serif;
font-weight: 300;
color: #BC2A0A;
text-decoration: none;
transition: color 0.3s;
}
/* Hover-Effekt für Links */
a:hover {
color: #D06B5C
text-decoration: underline;
}
/* === Interne vs. externe Links (optional visuell unterscheiden) === */
a.external {
color: #DD958A;
}