Vorlage:Movegallery/style.css

Aus PokéWiki
Zur Navigation springen Zur Suche springen
.movegallery {
	display: flex;
	flex-flow: column;
	gap: 5px;
	margin: 0 auto 10px auto;
	max-width: 100%;
	width: max-content;
}

.movegallery > div:first-child {
	align-items: center;
	border-radius: 0.5em;
	display: flex;
	font-weight: bold;
	justify-content: center;
	text-align: center;
}

.movegallery > div:last-child {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	justify-content: center;
}

.movegallery > div:last-child > div {
	border-radius: 0.5em;
	display: grid;
	flex-basis: 100px;
	flex-grow: 1;
	flex-shrink: 1;
	gap: 2px;
	grid-template-rows: 1fr min-content;
	padding: 2px;
}

.movegallery > div:last-child > div > div:first-child {
	align-items: center;
	border-radius: 0.5em;
	display: flex;
	justify-content: center;
	padding: 2px;
}

.movegallery > div:last-child > div > div:first-child img {
	border-radius: 0.5em;
	height: auto;
	max-width: 300px;
}

.movegallery > div:last-child > div > div:last-child {
	background-color: #FFFFFF;
	border-radius: 0.5em;
	padding: 2px;
	text-align: center;
}

.movegallery > div:last-child > p {
	display: none;
}

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