Vorlage:Main page/styles.css: Unterschied zwischen den Versionen
Aus PadelWiki
Die Seite wurde neu angelegt: „→CSS used for https://www.mediawiki.org/wiki/MediaWiki/Homepage_improvements_2018 :: .mainpage_row { display: flex; flex-direction: row; flex-flow: row wrap; justify-content: space-between; padding: 0; gap: 10px; margin-top: 10px; margin-bottom: 10px; →eliminated by margin collapse on adjacent rows: } .mainpage_box { flex: 1; min-width: 210px; border: 1px solid #a2a9b1; padding: 0 10px 10px 10px; box-shadow: 0 2px 2px rgba( 0, 0, 0, 0…“ |
Keine Bearbeitungszusammenfassung |
||
| Zeile 1: | Zeile 1: | ||
.flex-container { | |||
display: flex; | |||
justify-content: flex-start; | |||
align-items: stretch; | |||
/* flex-flow: row nowrap; */ | |||
flex-direction: row; | |||
flex-wrap: nowrap; | |||
align-content: stretch; | |||
background-color: #bbdefb; | |||
height: 100%; | |||
padding: 15px; | |||
gap: 5px; | |||
} | |||
} | |||
.flex-container > div{ | |||
background: #ffecb3; | |||
border: 3px solid #ffcc80; | |||
border-radius: 5px; | |||
padding: 8px; | |||
} | |||
} | |||
Version vom 26. Oktober 2025, 17:29 Uhr
.flex-container {
display: flex;
justify-content: flex-start;
align-items: stretch;
/* flex-flow: row nowrap; */
flex-direction: row;
flex-wrap: nowrap;
align-content: stretch;
background-color: #bbdefb;
height: 100%;
padding: 15px;
gap: 5px;
}
.flex-container > div{
background: #ffecb3;
border: 3px solid #ffcc80;
border-radius: 5px;
padding: 8px;
}