Vorlage:Main page/styles.css: Unterschied zwischen den Versionen
Aus PadelWiki
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
| Zeile 1: | Zeile 1: | ||
.flex-container { | .flex-container { | ||
display: flex; | display: flex; | ||
justify-content: flex-start; | justify-content: flex-start; | ||
align-items: stretch; | align-items: stretch; | ||
Version vom 26. Oktober 2025, 17:34 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%;
gap: 5px;
}
.flex-container > div{
background: #ffecb3;
border: 3px solid #ffcc80;
border-radius: 5px;
padding: 8px;
}