Vorlage:Spiele-Update/style.css: Unterschied zwischen den Versionen

Aus PokéWiki
Zur Navigation springen Zur Suche springen
(Die Seite wurde neu angelegt: „.spiele__update { background-color: #B1CDEC; width: 100%; border: 3px solid #5C82AE; display: grid; grid-template-columns: 1fr 4fr 3fr auto; gap: 2px; t…“)
 
KKeine Bearbeitungszusammenfassung
Zeile 21: Zeile 21:
align-items: center;
align-items: center;
justify-content: center;
justify-content: center;
flex-flow: column;
}
}



Version vom 8. August 2022, 23:13 Uhr

.spiele__update {
	background-color: #B1CDEC;
	width: 100%;
	border: 3px solid #5C82AE;
	display: grid;
	grid-template-columns: 1fr 4fr 3fr auto;
	gap: 2px;
	text-align: center;
	box-sizing: border-box;
}

.spiele__update .heading {
	font-weight: bold;
	padding: 5px;
}

.spiele__update div:not(.heading) {
	background-color: white;
	padding: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
}

.spiele__update .changes:not(.heading) {
	display: inline;
	text-align: left;
}

/* Breakpoint 480px: Umstellung auf volle Breite, Patchnotes in zweite Zeile verschieben */
/*@media only screen and (max-width:480px) {
	.spiele__update {
		background-color: #B1CDEC;
		width: 100%;
		border: 3px solid #5C82AE;
		grid-template-columns: 1fr 4fr 3fr;
	}

	.spiele__update .heading + .changes {
		display: none !important;
	}

	.spiele__update .changes:not(.heading) {
		grid-column: span 3;
	}
}*/

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