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;  
Zeile 7: Zeile 7:
     flex-wrap: nowrap;  
     flex-wrap: nowrap;  
     align-content: stretch;
     align-content: stretch;
     background-color: #bbdefb;
     background-color: #bbdefb;
     height: 100%;
     height: 100%;
     gap: 5px;
     gap: 5px;
}


  }
.flex-container > div{
 
  .flex-container > div{
     background: #ffecb3;
     background: #ffecb3;
     border: 3px solid #ffcc80;
     border: 3px solid #ffcc80;
     border-radius: 5px;
     border-radius: 5px;
     padding: 8px;
     padding: 8px;
  }
}


.item1 {
.item1 {
width:50%;
    width:50%;
}
}


.item2 {
.item2 {
width:50%;
    width:50%;
}
}

Version vom 26. Oktober 2025, 17:36 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;
}

.item1 {
    width:50%;
}

.item2 {
    width:50%;
}