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
Content deleted Content added
Created page with "→‎All CSS here will be loaded for users of the Citizen skin: @import url('https://fonts.googleapis.com/css2?family=Nunito&family=Saira&family=Saira+Condensed:wght@400;700&family=Saira+Extra+Condensed:wght@400;700&display=swap');"
 
No edit summary
 
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 */
@import url('https://fonts.googleapis.com/css2?family=Nunito&family=Saira&family=Saira+Condensed:wght@400;700&family=Saira+Extra+Condensed:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito&family=Saira&family=Saira+Condensed:wght@400;700&family=Saira+Extra+Condensed:wght@400;700&display=swap');

:root {
--rarity-legendary: #f7bb2b;
--rarity-epic: #df4d92;
--rarity-rare: #2bb2d4;
--rarity-common: #13c3a6;
--rarity-none: #575757;
--color-pill: #d21f3c;
}

@media screen and (prefers-color-scheme:dark) {
:root.skin-theme-clientpref-os {
--card-background: #161418;
--color-button: #232026;
--color-button--hover: #d21f3c;
--color-secret: #14161f;
color-scheme:dark
}
:root.skin-theme-clientpref-os a {
--color-link: #52c1fa;
}
}

:root.skin-citizen-dark {
--card-background: #161418;
--color-button: #232026;
--color-button--hover: #d21f3c;
--color-secret: #14161f;
}

Latest revision as of 22:06, 7 December 2024

/* All CSS here will be loaded for users of the Citizen skin */
@import url('https://fonts.googleapis.com/css2?family=Nunito&family=Saira&family=Saira+Condensed:wght@400;700&family=Saira+Extra+Condensed:wght@400;700&display=swap');

:root {
	--rarity-legendary: #f7bb2b;
	--rarity-epic: #df4d92;
	--rarity-rare: #2bb2d4;
	--rarity-common: #13c3a6;
	--rarity-none: #575757;
	--color-pill: #d21f3c;
}

@media screen and (prefers-color-scheme:dark) {
  :root.skin-theme-clientpref-os {
	--card-background: #161418;
	--color-button: #232026;
	--color-button--hover: #d21f3c;
	--color-secret: #14161f;
    color-scheme:dark
  }
  :root.skin-theme-clientpref-os a {
	--color-link: #52c1fa;
  }
}

:root.skin-citizen-dark {
	--card-background: #161418;
	--color-button: #232026;
	--color-button--hover: #d21f3c;
	--color-secret: #14161f;
}