MediaWiki:Common.css: verschil tussen versies

Uit Eendracht Eerbeek
Ga naar: navigatie, zoeken
(Nieuwe pagina aangemaakt met '/** CSS die hier wordt geplaatst heeft invloed op alle skins */ table.TEST { overall style: float: right; margin: 0 0 0.5em 1em; border: 1px solid silve...')
 
(geen verschil)

Huidige versie van 2 dec 2015 om 10:08

/** CSS die hier wordt geplaatst heeft invloed op alle skins */

table.TEST { /* overall style */
  float: right;
  margin: 0 0 0.5em 1em;
  border: 1px solid silver;
  background-color: white;
  padding: 2px 5px;
}
 
table.TEST th, table.TEST td { /* each cell in the table */
  border: 1px solid black;
  padding: 3px;
}
 
table.TEST tr:first-child th { /* first header */
  background-color: green;
}
 
table.TEST th:first-of-type { /* the rest of the headers */
  background-color: lightgreen;
}