MediaWiki:Common.css: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
| (13 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
| Zeile 6: | Zeile 6: | ||
body { | body { | ||
font-family: 'Source Sans Pro', sans-serif; | font-family: 'Source Sans Pro', sans-serif; | ||
font-weight: | font-weight: 480; /* Light */ | ||
font-size: | font-size: 19px; | ||
line-height: 1. | line-height: 1.8; | ||
color: #000000; | color: #000000; | ||
} | } | ||
| Zeile 15: | Zeile 15: | ||
h1, h2, h3, h4, h5, h6 { | h1, h2, h3, h4, h5, h6 { | ||
font-family: 'Source Sans Pro', sans-serif; | font-family: 'Source Sans Pro', sans-serif; | ||
font-weight: | font-weight: 800; /* Semibold */ | ||
color: #004C93; | color: #004C93; | ||
} | } | ||
| Zeile 22: | Zeile 22: | ||
a { | a { | ||
font-family: 'Source Sans Pro', sans-serif; | font-family: 'Source Sans Pro', sans-serif; | ||
font-weight: | font-weight: 480; | ||
color: #004C93; | color: #004C93; | ||
text-decoration: none; | text-decoration: none; | ||
Aktuelle Version vom 15. April 2025, 14:31 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: 480; /* Light */
font-size: 19px;
line-height: 1.8;
color: #000000;
}
/* === Überschriften (Semibold) === */
h1, h2, h3, h4, h5, h6 {
font-family: 'Source Sans Pro', sans-serif;
font-weight: 800; /* Semibold */
color: #004C93;
}
/* === Links innerhalb des Wikis === */
a {
font-family: 'Source Sans Pro', sans-serif;
font-weight: 480;
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;
}