MediaWiki:Common.css: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Leonie (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
Leonie (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
| Zeile 35: | Zeile 35: | ||
color: #000000; | color: #000000; | ||
font-weight: normal; | font-weight: normal; | ||
} | |||
.indextitle-black { | |||
font-size: 25px; | |||
color: #ffffff; | |||
font-weight: normal; | |||
text-align: center; | |||
background-color: #000000; | |||
} | } | ||
Version vom 18. Januar 2021, 11:19 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;
}
.indextitle-black {
font-size: 25px;
color: #ffffff;
font-weight: normal;
text-align: center;
background-color: #000000;
}
/*Grid */
.wrapper {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
grid-gap: 10px;
}