MediaWiki:Common.css: verschil tussen versies
Naar navigatie springen
Naar zoeken springen
Geen bewerkingssamenvatting |
Geen bewerkingssamenvatting |
||
Regel 39: | Regel 39: | ||
@media print { | @media print { | ||
/* Portrait A4 forceren */ | |||
@page { | |||
size: A4 portrait; | |||
margin: 15mm; | |||
} | |||
/* Linker menu weglaten */ | /* Linker menu weglaten */ | ||
#mw-panel { | #mw-panel { | ||
Regel 52: | Regel 58: | ||
width: 100% !important; | width: 100% !important; | ||
max-width: none !important; | max-width: none !important; | ||
font-size: 90% !important; /* tekst iets kleiner */ | |||
} | } | ||
/* | /* Hele pagina iets verkleinen */ | ||
body { | |||
transform: scale(0.9); | |||
transform-origin: top left; | |||
width: 111%; /* corrigeer breedte na scale */ | |||
} | } | ||
Regel 83: | Regel 71: | ||
img, | img, | ||
.thumb, | .thumb, | ||
.thumbinner { | .thumbinner, | ||
.thumbimage { | |||
max-width: 100% !important; | max-width: 100% !important; | ||
height: auto !important; | height: auto !important; | ||
Regel 102: | Regel 91: | ||
overflow-wrap: break-word; | overflow-wrap: break-word; | ||
} | } | ||
/* Top en footer zichtbaar */ | |||
#mw-head, | |||
#footer { | |||
display: block !important; | |||
# | |||
} | } | ||
} | } |
Versie van 26 sep 2025 09:01
/** CSS die hier wordt geplaatst heeft invloed op alle vormgevingen */ #ca-history { display: none !important;} #ca-talk { display: none !important; } /* Content links uitlijnen naast de sidebar */ #content { max-width: 900px; /* smalle kolom */ margin-left: 11em; /* ruimte voor de sidebar (pas eventueel aan) */ margin-right: auto; /* rechts witruimte */ } /* Forceer logo zichtbaar in Vector 2011 */ #p-logo, #p-logo a.mw-wiki-logo { display:block !important; width: 10em !important; height: 160px !important; background-size: contain !important; background-repeat: no-repeat !important; background-position: left center !important; } /* En voor Vector 2022 */ .vector-header .mw-logo-wordmark img, .vector-header .mw-logo-wordmark { display:block !important; max-width: 160px !important; height: 18px !important; } .vector-header .mw-logo-icon { display:block !important; } /* Maak thumbnails in categoriepagina's groter */ .category-gallery img { width: 350px !important; height: auto !important; } @media print { /* Portrait A4 forceren */ @page { size: A4 portrait; margin: 15mm; } /* Linker menu weglaten */ #mw-panel { display: none !important; } /* Inhoud helemaal naar links en maximaal breed */ #content, #bodyContent, #mw-content-text { margin-left: 0 !important; padding-left: 0 !important; width: 100% !important; max-width: none !important; font-size: 90% !important; /* tekst iets kleiner */ } /* Hele pagina iets verkleinen */ body { transform: scale(0.9); transform-origin: top left; width: 111%; /* corrigeer breedte na scale */ } /* Afbeeldingen en thumbnails netjes laten schalen */ img, .thumb, .thumbinner, .thumbimage { max-width: 100% !important; height: auto !important; page-break-inside: avoid; } /* Tabellen afbreekbaar maken */ table { max-width: 100% !important; table-layout: auto !important; word-wrap: break-word; page-break-inside: avoid; } /* Lange woorden of links afbreken */ * { word-wrap: break-word; overflow-wrap: break-word; } /* Top en footer zichtbaar */ #mw-head, #footer { display: block !important; } }