Modèle:Accueil/Catégorie/styles.css

/* Encart en haut à gauche contenant {{Accueil/Catégorie/Recherche}} */
.encart-colore.accueil-categorie-recherche {
	background-color: #eeffee;
	height: 100%;
    display: flex;
    align-items: center;
}
/* Encart en haut à droite contenant {{Accueil/Catégorie/Information}} */
.encart-colore.accueil-categorie-information {
	background-color: #f7f7ff;
	height: 100%;
    display: flex;
    align-items: center;
}
/* Cadres contenant {{Accueil/Catégorie/Encyclopédie}} et {{Accueil/Catégorie/Espace non encyclopédique}} */
.accueil-categorie-cadre {
	margin-right:6px;
	background-color: var(--background-color-neutral-subtle, #f8f9fa);
}
.accueil-categorie-cadre-titre {
	text-align: center;
	height: 1.6em;
	font-weight: bold;
	background-color: var(--background-color-neutral-subtle, #f8f9fa);
}
.accueil-categorie-cadre-contenu {
	margin:0;
	background-color:var(--background-color-base, #fff);
	display:block;
}
/* Mode sombre */
@media screen {
	html.skin-theme-clientpref-night .encart-colore.accueil-categorie-recherche,
	html.skin-theme-clientpref-night .encart-colore.accueil-categorie-information {
		background-color: #202122;
	}
}
@media screen and (prefers-color-scheme: dark) {
	html.skin-theme-clientpref-os .encart-colore.accueil-categorie-recherche,
	html.skin-theme-clientpref-os .encart-colore.accueil-categorie-information {
		background-color: #202122;
	}
}

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