MediaWiki:Common.css: Unterschied zwischen den Versionen
Aus decaf-de
Uli (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
Uli (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
| Zeile 51: | Zeile 51: | ||
box-sizing: border-box; | box-sizing: border-box; | ||
font-weight: bold; | font-weight: bold; | ||
font-size: calc(var(--kachel-groesse) * 0. | font-size: calc(var(--kachel-groesse) * 0.08); | ||
color: #3a3a3a; | color: #3a3a3a; | ||
text-decoration: none; | text-decoration: none; | ||
Aktuelle Version vom 17. August 2026, 10:24 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 {
--kachel-groesse: 240px;
display: flex;
flex-wrap: wrap;
gap: calc(var(--kachel-groesse) * 0.09);
justify-content: center;
margin: 28px 0;
}
.decaf-break {
flex-basis: 100%;
height: 0;
}
.decaf-kachel {
flex: 1 1 calc(var(--kachel-groesse) * 0.85);
max-width: var(--kachel-groesse);
min-height: calc(var(--kachel-groesse) * 0.5);
background: #f4efe6;
border: 1px solid #cfc4ac;
border-radius: calc(var(--kachel-groesse) * 0.045);
overflow: hidden;
}
.decaf-kachel a {
display: flex;
width: 100%;
height: 100%;
min-height: calc(var(--kachel-groesse) * 0.5);
align-items: center;
justify-content: center;
text-align: center;
padding: calc(var(--kachel-groesse) * 0.06);
box-sizing: border-box;
font-weight: bold;
font-size: calc(var(--kachel-groesse) * 0.08);
color: #3a3a3a;
text-decoration: none;
}
.decaf-kachel a:hover {
background: #e9e0cd;
}
