Vorlage:Manga Charaktere/style.css

Aus PokéWiki
Zur Navigation springen Zur Suche springen
.manga-charaktere {
	margin: 10px 0 10px 0;
	border-radius: 0.5em;
	display: grid;
	padding: 2px;
	gap: 2px;
}

.manga-charaktere > div:first-child {
	display: flex;
	flex-wrap: wrap;
	gap: 2px;
}

.manga-charaktere > div:first-child div {
	border-radius: 0.5em;
	padding: 2px;
	flex-grow: 1;
	flex-basis: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.manga-charaktere > div:not(:first-child) {
	border-radius: 0.5em;
	display: grid;
	grid-template-columns: 150px 1fr;
	padding: 2px;
	gap: 2px;
}

.manga-charaktere > div:not(:first-child) div:nth-child(odd) {
	border-radius: 0.5em;
	background: #FFFFFF;
	text-align: center;
	font-weight: bold;
	padding: 2px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.manga-charaktere > div:not(:first-child) div:nth-child(even) {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 2px;
}

.manga-charaktere > div:not(:first-child) div:nth-child(even) a {
	border-radius: 0.5em;
	background: #FFFFFF;
	flex-grow: 1;
	flex-basis: 150px;
	padding: 2px;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* [[Kategorie:Vorlage:Non-Wikitext]] */