MediaWiki:Timeless-print.css: Unterschied zwischen den Versionen
Aus BBS Wiki
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung Markierung: Zurückgesetzt |
||
| Zeile 1: | Zeile 1: | ||
@media print { | @media print { | ||
/* Logo | /* Logo als Kopfzeile auf jeder Seite */ | ||
#mw-printlogo { | #mw-printlogo { | ||
display: block !important; | display: block !important; | ||
position: fixed; | |||
top: 10px; | |||
right: 10px; | |||
max-height: 60px; | |||
max-width: 200px; | |||
} | } | ||
/* | /* Platz unterhalb des Logos lassen */ | ||
body { | |||
margin-top: 80px !important; | |||
} | |||
/* Navigation und andere Elemente ausblenden */ | |||
#mw-header, #mw-footer, #mw-navigation, .mw-portlet, #siteNotice { | #mw-header, #mw-footer, #mw-navigation, .mw-portlet, #siteNotice { | ||
display: none !important; | display: none !important; | ||
} | } | ||
} | } | ||
Version vom 1. Oktober 2025, 12:01 Uhr
@media print {
/* Logo als Kopfzeile auf jeder Seite */
#mw-printlogo {
display: block !important;
position: fixed;
top: 10px;
right: 10px;
max-height: 60px;
max-width: 200px;
}
/* Platz unterhalb des Logos lassen */
body {
margin-top: 80px !important;
}
/* Navigation und andere Elemente ausblenden */
#mw-header, #mw-footer, #mw-navigation, .mw-portlet, #siteNotice {
display: none !important;
}
}
