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) =…“ |
Keine Bearbeitungszusammenfassung |
||
| Zeile 6: | Zeile 6: | ||
body { | body { | ||
font-family: 'Source Sans Pro', sans-serif; | font-family: 'Source Sans Pro', sans-serif; | ||
font-weight: | font-weight: 400; /* Light */ | ||
font-size: | font-size: 18px; | ||
line-height: 1.6; | line-height: 1.6; | ||
color: # | color: #000000; | ||
} | } | ||
| Zeile 23: | Zeile 23: | ||
font-family: 'Source Sans Pro', sans-serif; | font-family: 'Source Sans Pro', sans-serif; | ||
font-weight: 300; | font-weight: 300; | ||
color: # | color: #004C93; | ||
text-decoration: none; | text-decoration: none; | ||
transition: color 0.3s; | transition: color 0.3s; | ||
| Zeile 30: | Zeile 30: | ||
/* Hover-Effekt für Links */ | /* Hover-Effekt für Links */ | ||
a:hover { | a:hover { | ||
color: # | color: #7FA5C9; | ||
text-decoration: underline; | text-decoration: underline; | ||
} | } | ||
| Zeile 36: | Zeile 36: | ||
/* === Interne vs. externe Links (optional visuell unterscheiden) === */ | /* === Interne vs. externe Links (optional visuell unterscheiden) === */ | ||
a.external { | a.external { | ||
color: # | color: #666666; | ||
} | } | ||
Version vom 15. April 2025, 14:03 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: 400; /* Light */
font-size: 18px;
line-height: 1.6;
color: #000000;
}
/* === Ü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: #004C93;
text-decoration: none;
transition: color 0.3s;
}
/* Hover-Effekt für Links */
a:hover {
color: #7FA5C9;
text-decoration: underline;
}
/* === Interne vs. externe Links (optional visuell unterscheiden) === */
a.external {
color: #666666;
}