MediaWiki:Timeless-print.css: Unterschied zwischen den Versionen
Aus BBS Wiki
Keine Bearbeitungszusammenfassung Markierung: Zurückgesetzt |
Keine Bearbeitungszusammenfassung Markierung: Zurückgesetzt |
||
| Zeile 1: | Zeile 1: | ||
@media print { | @media print { | ||
/* | /* Kopfzeile fixiert */ | ||
#mw- | #mw-printheader { | ||
display: | display: flex !important; | ||
justify-content: space-between; | |||
align-items: center; | |||
position: fixed; | position: fixed; | ||
top: 10px; | top: 10px; | ||
left: 10px; | |||
right: 10px; | right: 10px; | ||
padding-bottom: 5px; | |||
border-bottom: 1px solid #000; | |||
} | |||
/* Titel links */ | |||
#mw-printtitle { | |||
font-size: 16pt; | |||
font-weight: bold; | |||
} | |||
/* Logo rechts */ | |||
#mw-printlogo { | |||
max-height: 60px; | max-height: 60px; | ||
max-width: 200px; | max-width: 200px; | ||
} | } | ||
/* Platz | /* Platz schaffen, damit der Inhalt nicht in die Kopfzeile läuft */ | ||
body { | body { | ||
margin-top: | margin-top: 90px !important; | ||
} | } | ||
/* | /* Unnötige Bereiche 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:03 Uhr
@media print {
/* Kopfzeile fixiert */
#mw-printheader {
display: flex !important;
justify-content: space-between;
align-items: center;
position: fixed;
top: 10px;
left: 10px;
right: 10px;
padding-bottom: 5px;
border-bottom: 1px solid #000;
}
/* Titel links */
#mw-printtitle {
font-size: 16pt;
font-weight: bold;
}
/* Logo rechts */
#mw-printlogo {
max-height: 60px;
max-width: 200px;
}
/* Platz schaffen, damit der Inhalt nicht in die Kopfzeile läuft */
body {
margin-top: 90px !important;
}
/* Unnötige Bereiche ausblenden */
#mw-header, #mw-footer, #mw-navigation, .mw-portlet, #siteNotice {
display: none !important;
}
}
