The first video in the TASBot Re: (TASBot Revisited) series is out! TASBot Re: Gradius covers our first run from AGDQ 2014.

Historians wanted: Inquire here.

MediaWiki:Citizen.css: Difference between revisions

MediaWiki interface page
(Created page with "→‎All CSS here will be loaded for users of the Citizen skin: .skin-citizen-light .mw-logo-icon { filter: invert(1); }")
 
(Fix table margin not overlapping because it's wrapped -_-)
 
(2 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 */
/** Fix table margin not overlapping because it's wrapped -_- */
.citizen-table-wrapper {
margin: var(--space-md, initial) 0;
}
.citizen-table-wrapper table {
margin: 0;
}
.skin-citizen-light .mw-logo-icon {
.skin-citizen-light .mw-logo-icon {
     filter: invert(1);
     filter: invert(1);
}
h3 > p { margin: initial; }
/** legible text for Babel userboxen */
.skin-citizen-dark .mw-babel-box {
color: var(--color-base--subtle, currentColor);
}
}

Latest revision as of 18:12, 3 August 2024

/* All CSS here will be loaded for users of the Citizen skin */



/** Fix table margin not overlapping because it's wrapped -_- */
.citizen-table-wrapper {
	margin: var(--space-md, initial) 0;
}
.citizen-table-wrapper table {
	margin: 0;
}



.skin-citizen-light .mw-logo-icon {
    filter: invert(1);
}
h3 > p { margin: initial; }

/** legible text for Babel userboxen */
.skin-citizen-dark .mw-babel-box {
	color: var(--color-base--subtle, currentColor);
}