MediaWiki:Citizen.css: Difference between revisions

MediaWiki interface page
(Use Roboto Slab font)
 
(Make the selected text of spoilercells black, against a grey background)
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
/* All CSS here will be loaded for users of the Citizen skin */
/* All CSS here will be loaded for users of the Citizen skin */
:root {
    --font-family-base: 'Roboto Slab','Noto Sans CJK',system-ui,-apple-system,sans-serif;
}


--font-family-base: "Roboto Slab",system-ui,-apple-system,sans-serif;
#siteSub {
    visibility: hidden;
}
 
/* Make sure inline wide images fit for mobile users */
p .mw-default-size a.mw-file-description img {
max-width: 100%;
height: auto;
}
 
/* Make the selected text of spoilercells black, against a grey background */
td.table-spoiler div::selection {
color: black;
background: #c0c0c0;
}

Latest revision as of 18:49, 30 April 2024

/* All CSS here will be loaded for users of the Citizen skin */
:root {
     --font-family-base: 'Roboto Slab','Noto Sans CJK',system-ui,-apple-system,sans-serif;
}

#siteSub {
    visibility: hidden;
}

/* Make sure inline wide images fit for mobile users */
p .mw-default-size a.mw-file-description img {
	max-width: 100%;
	height: auto;
}

/* Make the selected text of spoilercells black, against a grey background */
td.table-spoiler div::selection {
	color: black;
	background: #c0c0c0;
}