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

Aus PadelWiki
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Markierung: Manuelle Zurücksetzung
 
(18 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
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;  
Zeile 9: Zeile 7:
     flex-wrap: nowrap;  
     flex-wrap: nowrap;  
     align-content: stretch;
     align-content: stretch;
    height: 100%;
    gap: 10px;
    padding-bottom: 10px;
}
.flex-container > div{
    background: #fffee7;
    border: 1px solid #ffec41;
    border-radius: 2px;
    padding: 10px;
    color: #89530a;
}
.item_full {
    flex-basis:100%;
}
.item_half {
    flex-basis:50%;
}


     background-color: #bbdefb;
.item1 {
    height: 100%;
     flex-basis:50%;
    padding: 15px;
}
    gap: 5px;


  }
.item1 h2 {
    margin: 0;
color: #442304;
}


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

Aktuelle Version vom 1. November 2025, 18:11 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: #fffee7;
    border: 1px solid #ffec41;
    border-radius: 2px;
    padding: 10px;
    color: #89530a;
}



.item_full {
    flex-basis:100%;
}

.item_half {
    flex-basis:50%;
}

.item1 {
    flex-basis:50%;
}

.item1 h2 {
    margin: 0;
color: #442304;
}

.item2 {
    flex-basis:50%;
}