Naar inhoud springen

Sjabloon:Kolommen/styles.css

Uit Wikipedia, de vrije encyclopedie
.kolommen {
	display: flex;
	flex-wrap: wrap;
	column-gap: 1em;
	margin-top: 0.3em;
	clear: left;
}

.kolom {
	flex: 1 1 15em;
}

.infobox .kolom,
.thumbcaption .kolom {
	flex-basis: 0;
}

.kolommen-auto > .kolom {
	flex-basis: auto;
}

.kolommen-compact > .kolom {
	flex-grow: 0;
}

@media screen and (max-width:640px) {
	.kolommen {
		flex-direction: column;
	}
	
	.kolom {
		flex: 1 1;
		flex-basis: auto!important;
	}
	
	.kolom .wikitable {
		display: table;
		min-width: 100%;
		table-layout: fixed;
	}
}

/* [[Categorie:Wikipedia:TemplateStyles-pagina's]] */