MediaWiki:Common.css: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
/* ==================================================== */ | /* ==================================================== */ | ||
/* File: MediaWiki:Common.css */ | /* File: MediaWiki:Common.css */ | ||
/* Description : | /* 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. */ | |||
/* 10 feb 2026: 1. | /* ==================================================== */ | ||
/* 10 feb 2026: 1. | |||
/* | |||
/* 1. FORCEER VOLLEDIGE BREEDTE (Vector 2022) */ | |||
/* Dit heft de beperking op die de tekst in het midden van het scherm houdt */ | |||
/* | |||
:root { | :root { | ||
--max-width-content | --max-width-content: 100% !important; | ||
--max-width-page | --max-width-page: 100% !important; | ||
} | } | ||
.mw-page-container { | |||
.mw- | |||
max-width: none !important; | 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 | /* We maken de tekst dikker (vetter) zoals gevraagd */ | ||
body, p, li, #content { | |||
font-weight: 600 !important; | font-weight: 600 !important; /* 600 is Semi-Bold, verhoog naar 700 voor echt vet */ | ||
font-size: 1. | 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; | |||
} | } | ||
Revision as of 20:16, 10 February 2026
/* ==================================================== */
/* 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;
}