MediaWiki:Common.css: Difference between revisions

From Genesys Wiki
Jump to navigation Jump to search
(Created page with "→‎CSS placed here will be applied to all skins: table.zebra tr.stripe { background-color: #ccc; } .stripe { background-color: red; }")
 
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */


table.zebra tr.stripe { background-color: #ccc; }
body {
  background-color: #666666;
}


.stripe { background-color: red; }
table.zebra tr.stripe {
  background-color: #ccc;
}
 
.stripe {
  background-color: red;
}

Revision as of 15:25, 13 October 2023

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

body {
  background-color: #666666;
}

table.zebra tr.stripe {
  background-color: #ccc;
}

.stripe {
  background-color: red;
}