|
Tags: Blanking Manual revert |
| (18 intermediate revisions by the same user not shown) |
| Line 1: |
Line 1: |
| /* ==================================================== */
| |
| /* File: MediaWiki:Common.css */
| |
| /* Description : Clean reset voor breedte en font-weight */
| |
| /* 10 feb 2026: 1.0 - pvdm - Schone start zonder externe import. */
| |
| /* 10 feb 2026: 1.1 - Gemini - Layout-fix voor volledige breedte en vetter font. */
| |
| /* ==================================================== */
| |
|
| |
|
| /* 1. FORCEER VOLLEDIGE BREEDTE (Vector 2022) */
| |
| /* Dit heft de beperking op die de tekst in het midden van het scherm houdt */
| |
| :root {
| |
| --max-width-content: 100% !important;
| |
| --max-width-page: 100% !important;
| |
| }
| |
|
| |
| .mw-page-container {
| |
| max-width: none !important;
| |
| padding: 0 20px !important; /* Een kleine ademruimte aan de randen */
| |
| }
| |
|
| |
| .mw-content-container {
| |
| max-width: none !important;
| |
| width: 100% !important;
| |
| }
| |
|
| |
| /* 2. FONT EN LEESBAARHEID */
| |
| /* We maken de tekst dikker (vetter) zoals gevraagd */
| |
| body, p, li, #content {
| |
| font-weight: 600 !important; /* 600 is Semi-Bold, verhoog naar 700 voor echt vet */
| |
| font-size: 1.05em;
| |
| line-height: 1.6;
| |
| }
| |
|
| |
| /* 3. KOPPEN (Placeholder voor jouw stijl) */
| |
| /* Hieronder kun je de specifieke kleuren/fonts uit je stijl.css plakken */
| |
| h1, h2, h3, #firstHeading {
| |
| font-weight: 800 !important;
| |
| border-bottom: 2px solid #333; /* Tijdelijke lijn voor structuur */
| |
| margin-top: 1em;
| |
| }
| |