Modèle:Hockeybox/styles.css

/* Styles appliqués au conteneur */
.hockeybox {
	width: 100%;
	background-color: var(--background-color-neutral, #eaecf0);
	border: 1px solid var(--border-color-base, #a2a9b1);
	font-size: 85%;
    margin-bottom: 1em;
}
.hockeybox table {
	width: 100%;
}

/* Styles appliqués aux éléments principaux */
.hockeybox-date {
	width: 15%;
	text-align: center;
}
.hockeybox-equipe1 {
	width: 25%;
	text-align: right;
	font-size: larger;
}
.hockeybox-score {
	width: 15%;
	text-align: center;
	font-size: larger;
}
.hockeybox-equipe2 {
	width: 25%;
	text-align: left;
	font-size: larger;
}

/* Styles appliqués au tableau dépliable « Feuille de match » */
.hockeybox-feuilledematch th {
	text-align: center;
}
.hockeybox-feuilledematch td {
	vertical-align: top;
}
.hockeybox-feuilledematch td:nth-child(1) {
    width: 15%;
}
.hockeybox-feuilledematch td:nth-child(2) {
	text-align: right;
    width: 25%;
}
.hockeybox-feuilledematch td:nth-child(3) {
	text-align: center;
    width: 15%;
}
.hockeybox-feuilledematch td:nth-child(4) {
	text-align: left;
    width: 25%;
}

/* [[Catégorie:Sous-page de modèle feuille de style]] */