Vorlage:Main page/styles.css: Unterschied zwischen den Versionen

Aus PadelWiki
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 14: Zeile 14:
.flex-container > div{
.flex-container > div{
     background: #ffecb3;
     background: #ffecb3;
     border: 3px solid #ffcc80;
     border: 3px solid #36c;
     border-radius: 5px;
     border-radius: 2px;
     padding: 8px;
     padding: 10px;
}
}



Version vom 26. Oktober 2025, 18:17 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;
    height: 100%;
    gap: 10px;
    padding-bottom: 10px;
}

.flex-container > div{
    background: #ffecb3;
    border: 3px solid #36c;
    border-radius: 2px;
    padding: 10px;
}

.item1 {
    flex-basis:50%;
}

.item2 {
    flex-basis:50%;
}