Weitere Sprachen
Weitere Optionen
(CriticalResist änderte das Inhaltsmodell der Seite Vorlage:Portal CSS/style.css von „Wikitext“ nach „Bereinigtes CSS“) Markierung: Änderung des Inhaltsmodells |
Jaiden (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
Zeile 1: | Zeile 1: | ||
.portal{ | |||
display:flex; | |||
flex-flow:row wrap; | |||
justify-content:space-between; | |||
align-items:stretch; | |||
align-content:flex-start; | |||
row-gap:20px; | |||
box-sizing:border-box; | |||
} | |||
h2,h3{ /*Remove the extra styling on top-level headings that ideally are only used at the very top of a container*/ | |||
border-bottom:none; | |||
margin-top:0; | |||
} | |||
@media only screen and (max-width:768px){ | |||
.portal{ | |||
row-gap:10px; | |||
align-items:flex-start; | |||
} | |||
} |
Aktuelle Version vom 13. November 2024, 09:30 Uhr
.portal{
display:flex;
flex-flow:row wrap;
justify-content:space-between;
align-items:stretch;
align-content:flex-start;
row-gap:20px;
box-sizing:border-box;
}
h2,h3{ /*Remove the extra styling on top-level headings that ideally are only used at the very top of a container*/
border-bottom:none;
margin-top:0;
}
@media only screen and (max-width:768px){
.portal{
row-gap:10px;
align-items:flex-start;
}
}