Template:Contenuti/styles.css

/* attenzione, è usato anche da Template:Fonti */

/* contenuti ext */
.itwiki-template-contenuti {
	box-sizing: border-box;
	width: 80%;
	margin: 0 auto 1.5em;
	padding: 0.5em 1em;
	background-color: #fff2cf;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
	border: 1px solid silver;
}

/* contenuti int */
.itwiki-template-contenuti > div {
	flex-grow: 1;
}

.itwiki-template-contenuti-riga {
	border: 1px solid silver;
}

.itwiki-template-contenuti-riga:first-child {
	background-color: #fee;
	padding: 7px;
}

.itwiki-template-contenuti-riga:not(:first-child) {
	background-color: #efe;
	font-size: 90%;
	padding: 3px;
	margin-top: 5px;
}

@media screen {
	html.skin-theme-clientpref-night .itwiki-template-contenuti {
		background-color: var(--background-color-neutral-subtle);
		border: 1px solid var(--border-color-base);
	}
	
	html.skin-theme-clientpref-night .itwiki-template-contenuti-riga {
		background-color: var(--background-color-neutral);
		border: 1px solid var(--border-color-base);
	}
}

@media screen and (prefers-color-scheme: dark) {
	html.skin-theme-clientpref-os .itwiki-template-contenuti {
		background-color: var(--background-color-neutral-subtle);
		border: 1px solid var(--border-color-base);
	}
	
	html.skin-theme-clientpref-os .itwiki-template-contenuti-riga {
		background-color: var(--background-color-neutral);
		border: 1px solid var(--border-color-base);
	}
}