MediaWiki:Citizen.css: Difference between revisions

From TwogPedia
No edit summary
No edit summary
 
(6 intermediate revisions by the same user 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 */
/*INFOBOX*/
/* GENERAL */
 
.skin-citizen-dark .dark {
.skin-citizen-dark .ib {
display: block !important;
    /*background-color: #484848;*/
    background-color: #363636;
}
}
.skin-citizen-dark .ib-row:nth-of-type(2n + 2) {
.skin-citizen-dark .dark-inline {
background-color: #4e4e4e;
display: inline-block !important;
}
}
 
.skin-citizen-dark .dark-inline-flex {
.skin-citizen-dark .ib-subheader {
display: inline-flex !important;
background-color: #ddffdd;
color: #000;
}
}
 
.skin-citizen-dark .light {
/* Striped wikitable */
display: none !important;
.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%);
}
.skin-citizen-dark .team-list-logo-dark {
display: block;
}
.skin-citizen-dark .team-list-logo-light {
display: none;
}
/*-----END-----*/

Latest revision as of 10:25, 28 September 2022

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