MediaWiki:Citizen.css: Difference between revisions

From TwogPedia
(Created page with "→‎All CSS here will be loaded for users of the Citizen skin: .ib { background-color: #484848; }")
 
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 */
/*INFOBOX*/
.ib {
.ib {
     background-color: #484848;
     /*background-color: #484848;*/
    background-color: #363636;
}
.ib-row:nth-of-type(2n + 2) {
background-color: #383838;
}
.ib-subheader {
background-color: #4e4e4e;
}
.ib-subheader {
color: #000;
}
 
/* Striped wikitable */
.striped-table {
color: #e1e1e1;
}
.striped-table > tbody > tr:nth-of-type(2n + 1) {
background-color: #262626;
}
.striped-table > tbody > tr:nth-of-type(2n + 2) {
background-color: #262626
}
}

Revision as of 17:10, 29 August 2022

/* All CSS here will be loaded for users of the Citizen skin */
/*INFOBOX*/
.ib {
    /*background-color: #484848;*/
    background-color: #363636;
}
.ib-row:nth-of-type(2n + 2) {
	background-color: #383838;
}
.ib-subheader {
	background-color: #4e4e4e;
}
.ib-subheader {
	color: #000;
}

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