MediaWiki:Common.css: Difference between revisions

From kingssing.com
No edit summary
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 */
tr:nth-child(even) {background-color: #f2f2f2;}
tr:hover {background-color: coral;}


table {
table {
Line 9: Line 5:
}
}


caption {
tr:nth-child(even) {background-color: #f2f2f2;}
  font-weight: bold;
 
  font-size: 18px;
tr:hover {background-color: coral;}
  text-align: left;
  background-color: green;
  color: white;
}

Revision as of 19:54, 6 April 2024

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

table {
  border-collapse: collapse;
}

tr:nth-child(even) {background-color: #f2f2f2;}

tr:hover {background-color: coral;}