Vorlage:TM-Herstellung/style.css

Aus PokéWiki
Zur Navigation springen Zur Suche springen
.tm-herstellung {
	border-radius: 0.5em;
	display: grid;
	gap: 2px;
	grid-template-columns: auto max-content;
	max-width: 320px;
	padding: 2px;
}

.tm-herstellung > div {
	padding: 2px;
}

.tm-herstellung > div:first-child {
	align-items: center;
	display: flex;
	font-weight: bold;
	grid-column-end: span 2;
	justify-content: center;
	text-align: center;
}

.tm-herstellung > div:not(:first-child) {
	background: #FFFFFF;
}

.tm-herstellung > div:nth-child(odd):not(:first-child) {
	margin-left: -2px;
	text-align: right;
}

.tm-herstellung > div:nth-last-child(2) {
	border-bottom-left-radius: 0.5em;
}

.tm-herstellung > div:nth-last-child(1) {
	border-bottom-right-radius: 0.5em;
}

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