MediaWiki:Common.css: Unterschied zwischen den Versionen
Aus decaf-de
Uli (Diskussion | Beiträge) Die Seite wurde neu angelegt: „→Das folgende CSS wird für alle Benutzeroberflächen geladen.: ul.interProject { list-style: none; padding-left: 0; margin-left: 0; } li.interProject, →for Vector skin since the above doesn't take for some reason: #mw-panel div.portal div.body ul.interProject li.interProject { background-repeat: no-repeat; background-position: left center; padding-left: 18px; margin-left: 0; }“ |
Uli (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
| Zeile 13: | Zeile 13: | ||
padding-left: 18px; | padding-left: 18px; | ||
margin-left: 0; | margin-left: 0; | ||
} | |||
.decaf-kacheln { | |||
display: flex; | |||
flex-wrap: wrap; | |||
gap: 14px; | |||
justify-content: center; | |||
margin: 28px 0; | |||
} | |||
.decaf-break { | |||
flex-basis: 100%; | |||
height: 0; | |||
} | |||
.decaf-kachel { | |||
flex: 1 1 140px; | |||
max-width: 170px; | |||
min-height: 80px; | |||
background: #f4efe6; | |||
border: 1px solid #cfc4ac; | |||
border-radius: 8px; | |||
overflow: hidden; | |||
} | |||
.decaf-kachel a { | |||
display: flex; | |||
width: 100%; | |||
height: 100%; | |||
min-height: 80px; | |||
align-items: center; | |||
justify-content: center; | |||
text-align: center; | |||
padding: 10px; | |||
box-sizing: border-box; | |||
font-weight: bold; | |||
font-size: 0.95em; | |||
color: #3a3a3a; | |||
text-decoration: none; | |||
} | |||
.decaf-kachel a:hover { | |||
background: #e9e0cd; | |||
} | } | ||
Version vom 17. August 2026, 09:52 Uhr
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
ul.interProject {
list-style: none;
padding-left: 0;
margin-left: 0;
}
li.interProject,
/* for Vector skin since the above doesn't take for some reason */
#mw-panel div.portal div.body ul.interProject li.interProject {
background-repeat: no-repeat;
background-position: left center;
padding-left: 18px;
margin-left: 0;
}
.decaf-kacheln {
display: flex;
flex-wrap: wrap;
gap: 14px;
justify-content: center;
margin: 28px 0;
}
.decaf-break {
flex-basis: 100%;
height: 0;
}
.decaf-kachel {
flex: 1 1 140px;
max-width: 170px;
min-height: 80px;
background: #f4efe6;
border: 1px solid #cfc4ac;
border-radius: 8px;
overflow: hidden;
}
.decaf-kachel a {
display: flex;
width: 100%;
height: 100%;
min-height: 80px;
align-items: center;
justify-content: center;
text-align: center;
padding: 10px;
box-sizing: border-box;
font-weight: bold;
font-size: 0.95em;
color: #3a3a3a;
text-decoration: none;
}
.decaf-kachel a:hover {
background: #e9e0cd;
}
