MediaWiki:Citizen.css: Difference between revisions

From TwogPedia
No edit summary
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 */
/* GENERAL */
.skin-citizen-dark .dark {
display: block;
}
.skin-citizen-dark .light {
display: none;
}
/*INFOBOX*/
/*INFOBOX*/


Line 29: Line 36:
.skin-citizen-dark .team-list .players {
.skin-citizen-dark .team-list .players {
     background-color: rgb(24 24 24 / 90%);
     background-color: rgb(24 24 24 / 90%);
}
.skin-citizen-dark .team-list-logo-dark {
display: block;
}
.skin-citizen-dark .team-list-logo-light {
display: none;
}
}
/*-----END-----*/
/*-----END-----*/

Revision as of 12:39, 7 September 2022

/* All CSS here will be loaded for users of the Citizen skin */
/* GENERAL */
.skin-citizen-dark .dark {
	display: block;
}
.skin-citizen-dark .light {
	display: none;
}
/*INFOBOX*/

.skin-citizen-dark .ib {
    /*background-color: #484848;*/
    background-color: #363636;
}
.skin-citizen-dark .ib-row:nth-of-type(2n + 2) {
	background-color: #4e4e4e;
}

.skin-citizen-dark .ib-subheader {
	background-color: #ddffdd;
	color: #000;
}

/* Striped wikitable */
.skin-citizen-dark .striped-table {
	color: #e1e1e1;
}
.skin-citizen-dark .striped-table > tbody > tr:nth-of-type(2n + 1) {
	background-color: #262626;
}
.skin-citizen-dark .striped-table > tbody > tr:nth-of-type(2n + 2) {
	background-color: #343434
}

/*PARTICIPANTS LIST TEAM*/
.skin-citizen-dark .team-list .players {
    background-color: rgb(24 24 24 / 90%);
}
/*-----END-----*/