Jump to content

MediaWiki:Common.css: Difference between revisions

From ClimateKG
No edit summary
No edit summary
Line 8: Line 8:


table tr:nth-child(odd) {
table tr:nth-child(odd) {
     background-color: #888888;
     background-color: #fffffff;
}
}
   
   
table tr:nth-child(even) {
table tr:nth-child(even) {
     background-color: #BBBBBB;
     background-color: #d7e2f3;
}
}

Revision as of 09:23, 18 May 2026

/* CSS placed here will be applied to all skins */

/* Make images responsive */
img {
max-width:90%;
height:auto;
}

table tr:nth-child(odd) {
    background-color: #fffffff;
}
 
table tr:nth-child(even) {
    background-color: #d7e2f3;
}