MediaWiki:Common.css: Unterschied zwischen den Versionen
Admin (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
Admin (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
| Zeile 1.306: | Zeile 1.306: | ||
/* ============================================ | /* ============================================ | ||
ADOS-Hero – whiskyfarben, | ADOS-Hero – whiskyfarben, Fade nach unten | ||
============================================ */ | ============================================ */ | ||
.ados-hero { | .ados-hero { | ||
background: linear-gradient( | /* whiskyfarben → nach unten ins Weiße auslaufen */ | ||
padding: 1.2rem 1.4rem 1. | background: linear-gradient( | ||
margin: 0 0 | 180deg, | ||
#e7cfa4 0%, | |||
#e1c297 40%, | |||
#f6efe4 75%, | |||
#ffffff 100% | |||
); | |||
padding: 1.2rem 1.4rem 1.5rem; | |||
margin: 0 0 1.6rem; | |||
border-radius: 12px; | border-radius: 12px; | ||
box-shadow: 0 4px 12px rgba(0,0,0,.05); | box-shadow: 0 4px 12px rgba(0,0,0,.05); | ||
| Zeile 1.319: | Zeile 1.325: | ||
} | } | ||
/* | /* Grid: Titel & Text nebeneinander, Spalten unten drunter */ | ||
.ados-hero__grid { | .ados-hero__grid { | ||
max-width: | max-width: 960px; | ||
margin: 0 auto; | margin: 0 auto; | ||
display: grid; | display: grid; | ||
grid-template-columns: | grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr); | ||
gap: 1. | grid-template-areas: | ||
"title center" | |||
"cols cols"; | |||
gap: 1.1rem 1.6rem; | |||
align-items: center; | align-items: center; | ||
} | } | ||
/* | /* Linke Seite: Titel */ | ||
.ados-hero__title { | .ados-hero__title { | ||
grid-area: title; | |||
font-family: "Georgia","Times New Roman",serif; | font-family: "Georgia","Times New Roman",serif; | ||
font-size: 1. | font-size: 1.7rem; | ||
font-weight: 700; | font-weight: 700; | ||
line-height: 1.2; | line-height: 1.2; | ||
| Zeile 1.348: | Zeile 1.350: | ||
.ados-hero__title hr { | .ados-hero__title hr { | ||
width: 55%; | width: 55%; | ||
margin-top: . | margin-top: .55rem; | ||
border: 0; | border: 0; | ||
border-top: 1px solid rgba(75,43,20,. | border-top: 1px solid rgba(75,43,20,.26); | ||
} | } | ||
/* Mitte | /* Mitte: Beschreibung, ohne Box */ | ||
.ados-hero__center { | |||
grid-area: center; | |||
display: flex; | |||
justify-content: center; | |||
} | |||
.ados-hero__center-box { | .ados-hero__center-box { | ||
font-family: "Courier New", ui-monospace, monospace; | font-family: "Courier New", ui-monospace, monospace; | ||
font-size: | font-size: .96rem; | ||
line-height: 1. | line-height: 1.6; | ||
color: #3a2918; | color: #3a2918; | ||
text-align: center; | text-align: center; | ||
padding: . | padding: .15rem .25rem; | ||
} | } | ||
.ados-hero__center-box strong { | .ados-hero__center-box strong { | ||
| Zeile 1.367: | Zeile 1.374: | ||
} | } | ||
/* | /* Unten: Spalten nebeneinander über die gesamte Breite */ | ||
.ados-hero__cols { | .ados-hero__cols { | ||
grid-area: cols; | |||
display: flex; | display: flex; | ||
justify-content: center; | |||
gap: . | gap: 2.2rem; | ||
padding-top: .4rem; | |||
border-top: 1px solid rgba(75,43,20,.16); | |||
} | |||
.ados-hero__col { | |||
min-width: 140px; | |||
font-size: .95rem; | |||
} | } | ||
.ados-hero__col-title { | .ados-hero__col-title { | ||
font-weight: 700; | font-weight: 700; | ||
margin-bottom: . | margin-bottom: .2rem; | ||
color: #4b2b14; | color: #4b2b14; | ||
font-size: . | font-size: .94rem; | ||
} | } | ||
.ados-hero__col ul { | .ados-hero__col ul { | ||
margin: 0; | margin: 0; | ||
padding-left: | padding-left: 1.05rem; | ||
} | } | ||
.ados-hero__col li { | .ados-hero__col li { | ||
margin: . | margin: .08rem 0; | ||
} | } | ||
| Zeile 1.404: | Zeile 1.419: | ||
.ados-hero__title { | .ados-hero__title { | ||
font-size: 1. | font-size: 1.5rem; | ||
} | |||
.ados-hero__title hr { | |||
margin-left: auto; | |||
margin-right: auto; | |||
} | |||
.ados-hero__center-box { | |||
max-width: 34rem; | |||
margin: 0 auto; | |||
} | } | ||
.ados-hero__cols { | .ados-hero__cols { | ||
flex-direction: | flex-direction: row; | ||
gap: . | flex-wrap: wrap; | ||
justify-content: center; | |||
gap: 1.2rem 2rem; | |||
border-top: 1px solid rgba(75,43,20,.18); | |||
padding-top: .6rem; | |||
} | } | ||
.ados-hero__col { | .ados-hero__col { | ||
min-width: 130px; | |||
text-align: center; | text-align: center; | ||
} | |||
.ados-hero__col ul { | |||
padding-left: 0; | |||
list-style-position: inside; | |||
} | } | ||
} | } | ||