MediaWiki:Common.css: Unterschied zwischen den Versionen

Aus wikimedia.144.ch
Zur Navigation springen Zur Suche springen
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 6: Zeile 6:
body {
body {
     font-family: 'Source Sans Pro', sans-serif;
     font-family: 'Source Sans Pro', sans-serif;
     font-weight: 400; /* Light */
     font-weight: 500; /* Light */
     font-size: 18px;
     font-size: 18px;
     line-height: 1.6;
     line-height: 1.6;

Version vom 15. April 2025, 14:04 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: 500; /* 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;
}