Naar inhoud springen

Sjabloon:Kolommen/styles.css: verschil tussen versies

Uit Wikipedia, de vrije encyclopedie
Verwijderde inhoud Toegevoegde inhoud
laatste kolom niet padden
kGeen bewerkingssamenvatting
 
(24 tussenliggende versies door 2 gebruikers niet weergegeven)
Regel 1: Regel 1:
.begin-kolommen {
.kolommen {
display: flex;
display: flex;
flex-wrap: wrap;
flex-wrap: wrap;
column-gap: 1em;
row-gap: 0.3em;
margin-top: 0.3em;
clear: left;
clear: left;
}
}


.kolom {
.kolom {
flex: 1 1 auto;
flex: 1 1 15em;
box-sizing: border-box;
}
}


.infobox .kolom,
.kolom:not(:last-child) {
.thumbcaption .kolom {
padding-right: 1em;
flex-basis: 0;
}

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


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

/* Bewerklinks onder de titel */
.kolom .mw-heading {
display: flex;
flex-direction: column;
padding: 0;
}

.kolom .mw-heading:first-of-type {
margin-top: 0;
}

.kolom .mw-editsection {
margin: 0 0 0.5em 0;
line-height: unset;
}

body.skin-minerva .kolom .mw-heading {
flex-direction: row;
}

body.skin-minerva .kolom .mw-editsection {
margin: inherit;
}

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



Huidige versie van 26 nov 2024 om 21:49

.kolommen {
	display: flex;
	flex-wrap: wrap;
	column-gap: 1em;
	row-gap: 0.3em;
	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;
}

/* Bewerklinks onder de titel */
.kolom .mw-heading {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.kolom .mw-heading:first-of-type {
    margin-top: 0;
}

.kolom .mw-editsection {
    margin: 0 0 0.5em 0;
    line-height: unset;
}

body.skin-minerva .kolom .mw-heading {
	flex-direction: row;
}

body.skin-minerva .kolom .mw-editsection {
    margin: inherit;
}

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

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