Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Citizen.css: Difference between revisions

MediaWiki interface page
No edit summary
Tag: Reverted
No edit summary
Tag: Reverted
Line 1: Line 1:
/* Layout width - default full width */
/* Layout width configuration */
:root {
/* Default: Full width for all pages */
html {
--width-layout: 100vw;
--width-layout: 100vw;
}
}


/* Override for main page using attribute selector */
/* Main page only: 1600px width */
.page-Hauptseite {
html:has(body.page-Hauptseite) {
--width-layout: 1600px;
--width-layout: 1600px;
}
}

Revision as of 01:02, 5 February 2026

/* Layout width configuration */
/* Default: Full width for all pages */
html {
	--width-layout: 100vw;
}

/* Main page only: 1600px width */
html:has(body.page-Hauptseite) {
	--width-layout: 1600px;
}