Mal:Volleyball/serietabell.css

Fra Wikipedia, den frie encyklopedi
/* Justering av tekstplassering i cellene */
.serie th,
.serie td {
	text-align: center;
}
.serie th:nth-child(2),
.serie td:nth-child(2) {
	text-align: left;
}

/* Backgrunnsfarge for første rad */
.serie tr:first-child {
	background-color: #dddddd;
}
.serie tr:first-child th,
.serie tr:first-child td {
	background-color: #dddddd;
}

/* Bakgrunnsfarge for andre rad */
.serie tr:nth-child(2) {
	background-color: #ace1af;
}
.serie tr:nth-child(2) th,
.serie tr:nth-child(2) td {
	background-color: #ace1af;
}

/* Minste bredde */
.serie tr:first-child th,
.serie tr:first-child td {
	min-width: 2.8em;
}
.serie tr:first-child th:nth-child(1),
.serie tr:first-child td:nth-child(1) {
	min-width: 1.4em;
}
.serie tr:first-child th:nth-child(2),
.serie tr:first-child td:nth-child(2) {
	min-width: 8.4em;
}

/* Fet skrift på første kolonne */
.serie th:first-child,
.serie td:first-child {
	font-weight: bold;
}

/* Fet skrift på andre kolonne */
.serie th:last-child,
.serie td:last-child {
	font-weight: bold;
}