MediaWiki:Common.css: Unterschied zwischen den Versionen

Aus AG3D
Zur Navigation springen Zur Suche springen
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 13: Zeile 13:
     padding-bottom: 10px;
     padding-bottom: 10px;
     margin-bottom: 10px;
     margin-bottom: 10px;
}
.stacked-mainbox-container{
    display: flex;
    flex-direction: column;
}
.stacked-main-box{ 
  flex: 1;
}
.stacked-main-box:nth-child(2n){ 
  margin-top: 10px;
}
}


Zeile 21: Zeile 35:
     color: #000000;
     color: #000000;
     font-weight: normal;
     font-weight: normal;
}
/*Grid */
.wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 10px;
}
}

Version vom 18. Januar 2021, 11:12 Uhr

/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */

a:visited
{
color: red;
}

.main-box{
    border-style: solid; 
    border-width:1px; 
    border-color: #DDDDE3; 
    padding: 5px;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.stacked-mainbox-container{
    display: flex;
    flex-direction: column;
}


.stacked-main-box{   
   flex: 1;
}

.stacked-main-box:nth-child(2n){   
   margin-top: 10px;
}

/*Titel */

.title {
  font-size: 25px;
    color: #000000;
    font-weight: normal;
}

/*Grid */

.wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 10px;
 
}