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 | /* Kopfzeile blockbasiert, Titel links, Logo rechts */ | ||
#mw-printheader { | #mw-printheader { | ||
display: flex !important; | display: flex !important; | ||
justify-content: space-between; | justify-content: space-between; | ||
align-items: center; | align-items: center; | ||
padding-bottom: 5px; | padding-bottom: 5px; | ||
border-bottom: 1px solid #000; | border-bottom: 1px solid #000; | ||
margin-bottom: 10px; | |||
} | } | ||
#mw-printtitle { | #mw-printtitle { | ||
font-size: 16pt; | font-size: 16pt; | ||
| Zeile 19: | Zeile 15: | ||
} | } | ||
#mw-printlogo { | #mw-printlogo { | ||
max-height: 60px; | max-height: 60px; | ||
| Zeile 25: | Zeile 20: | ||
} | } | ||
/* | /* Abstand unter Kopfzeile */ | ||
#mw-content { | |||
margin-top: | margin-top: 0 !important; /* Header ist jetzt normaler Block, Margin nicht nötig */ | ||
} | } | ||
/* | /* Navigation, Header, Footer 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:04 Uhr
@media print {
/* Kopfzeile blockbasiert, Titel links, Logo rechts */
#mw-printheader {
display: flex !important;
justify-content: space-between;
align-items: center;
padding-bottom: 5px;
border-bottom: 1px solid #000;
margin-bottom: 10px;
}
#mw-printtitle {
font-size: 16pt;
font-weight: bold;
}
#mw-printlogo {
max-height: 60px;
max-width: 200px;
}
/* Abstand unter Kopfzeile */
#mw-content {
margin-top: 0 !important; /* Header ist jetzt normaler Block, Margin nicht nötig */
}
/* Navigation, Header, Footer ausblenden */
#mw-header, #mw-footer, #mw-navigation, .mw-portlet, #siteNotice {
display: none !important;
}
}
