Benutzer:AndreasP/skin.css

Aus Mitmachen
< Benutzer:AndreasP
Version vom 1. August 2023, 18:49 Uhr von AndreasP (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „→‎save ink and paper with very small fonts: @media print { #footer, #content, body { font-size: 4pt !important; } h1 { font-size: 9pt } h2 { font-size: 7pt } h3 { font-size: 6pt } h4 { font-size: 5pt } h5 { font-size: 4pt } h6 { font-size: 4pt; font-weight: normal; } } →‎Remove non-essential elements: @media print { .firstHeading { margin-top: 0; padding-top: 0; } #siteSub { display: n…“)
(Unterschied) ← Nächstältere Version | Aktuelle Version (Unterschied) | Nächstjüngere Version → (Unterschied)
Zur Navigation springen Zur Suche springen

Hinweis: Leere nach dem Veröffentlichen den Browser-Cache, um die Änderungen sehen zu können.

  • Firefox/Safari: Umschalttaste drücken und gleichzeitig Aktualisieren anklicken oder entweder Strg+F5 oder Strg+R (⌘+R auf dem Mac) drücken
  • Google Chrome: Umschalttaste+Strg+R (⌘+Umschalttaste+R auf dem Mac) drücken
  • Internet Explorer/Edge: Strg+F5 drücken oder Strg drücken und gleichzeitig Aktualisieren anklicken
  • Opera: Strg+F5
/* save ink and paper with very small fonts */
@media print {
    #footer,
    #content,
    body { font-size: 4pt !important; }
    h1 { font-size: 9pt }
    h2 { font-size: 7pt }
    h3 { font-size: 6pt }
    h4 { font-size: 5pt }
    h5 { font-size: 4pt }
    h6 {
        font-size: 4pt;
        font-weight: normal;
    }
}

/* Remove non-essential elements */
@media print {
    .firstHeading { margin-top: 0; padding-top: 0; }
    #siteSub { display: none; }
    .printfooter { display: none; }
    #catlinks, .catlinks { display: none; }
    #footer { display: none; }
}