MediaWiki:Citizen.css: Difference between revisions

From TwogPedia
No edit summary
No edit summary
Line 6: Line 6:
}
}
.ib-row:nth-of-type(2n + 2) {
.ib-row:nth-of-type(2n + 2) {
background-color: #383838;
background-color: #4e4e4e;
}
}


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

Revision as of 17:13, 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: #4e4e4e;
}

.ib-subheader {
	background-color: #ddffdd;
	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: #343434
}