MediaWiki:Common.css: Unterschied zwischen den Versionen

Aus casis kochbuch
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 1: Zeile 1:
/* Google Font laden */
/* Lokale Fonts (DSGVO-konform, kein Google-Server) */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;1,400&display=swap');
@font-face {
    font-family: 'Merriweather';
    src: url('/zz_fonts/Merriweather-VariableFont_opsz,wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}


/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
@font-face {
    font-family: 'Merriweather';
    src: url('/zz_fonts/Merriweather-Italic-VariableFont_opsz,wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}


/* Hellgrauer Hintergrund für alle Elemente */
/* Hellgrauer Hintergrund */
body,
body,
.mw-page-container,
.mw-page-container,
Zeile 21: Zeile 31:
}
}


/* Linkfarben */
a,
a,
a:link {
a:link {

Version vom 9. Juni 2026, 13:04 Uhr

/* Lokale Fonts (DSGVO-konform, kein Google-Server) */
@font-face {
    font-family: 'Merriweather';
    src: url('/zz_fonts/Merriweather-VariableFont_opsz,wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Merriweather';
    src: url('/zz_fonts/Merriweather-Italic-VariableFont_opsz,wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

/* Hellgrauer Hintergrund */
body,
.mw-page-container,
.mw-page-container-inner,
.vector-column-start,
.vector-column-end,
#mw-content-text {
    background-color: #e8e8e8 !important;
}

/* Schriftart */
body,
#mw-content-text,
.mw-body-content {
    font-family: 'Merriweather', Georgia, serif !important;
}

/* Linkfarben */
a,
a:link {
    color: #141414 !important;
    font-family: 'Merriweather', Georgia, serif !important;
}

a:visited {
    color: #360202 !important;
}