Vorlage:Item Herstellung/style.css

Aus PokéWiki
Zur Navigation springen Zur Suche springen
.item-herstellung {
	border-radius: 0.5em;
}

.item-herstellung tr:first-child td {
	border-top-left-radius: 0.5em;
	border-top-right-radius: 0.5em;
	padding: 5px;
}

.item-herstellung tr:first-child > td > div {
	display: grid;
	grid-template-columns: repeat(3, auto);
	gap: 5px;
}

.item-herstellung tr:first-child > td > div > div {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px;
}

.item-herstellung tr:first-child > td > div > div:first-child > div,
.item-herstellung tr:first-child > td > div > div:last-child > div {
	display: flex;
	align-items: center;
	width: 100px;
	height: 100px;
	border-radius: 100%;
	background: #FFFFFF;
	border-width: 2px;
	border-style: solid;
}

.item-herstellung tr:first-child > td > div > div:first-child > div > div,
.item-herstellung tr:first-child > td > div > div:last-child > div > div {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	top: 30px;
	left: -25px;
	min-width: 25px;
	min-height: 25px;
	border-radius: 100%;
	border-width: 1px;
	border-style: solid;
	background: #FFFFFF;
}

.item-herstellung tr:not(:first-child) td {
	background: #FFFFFF;
	padding: 2px;
}

.item-herstellung tr:not(:first-child) td:first-child {
	text-align: center;
}

.item-herstellung tr:last-child td:first-child {
	border-bottom-left-radius: 0.5em;
}

.item-herstellung tr:last-child td:last-child {
	border-bottom-right-radius: 0.5em;
}

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