MediaWiki:Minerva.css: Unterschied zwischen den Versionen
Erscheinungsbild
Admin (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
Admin (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
| Zeile 11: | Zeile 11: | ||
/* ==== ADOS Hero-Bereich | /* ==== ADOS Hero-Bereich – Whisky-Balken wie ConanWiki ==== */ | ||
/* Breiter Balken über gesamte Inhaltsbreite, nur auf der Hauptseite */ | |||
body.page-Hauptseitev2 .ados-hero { | body.page-Hauptseitev2 .ados-hero { | ||
margin: 0 | /* zieht den Bereich bis an den Rand des Inhalts (ConanWiki-Effekt) */ | ||
padding: 1. | margin: -0.5rem -1.5rem 1.2rem; | ||
padding: 1.4rem 1.5rem 1.1rem; | |||
/* Whisky-Gold Farbverlauf, leicht transparent */ | |||
background: linear-gradient( | background: linear-gradient( | ||
135deg, | 135deg, | ||
rgba(217, 164, 65, 0. | rgba(217, 164, 65, 0.26), /* Gold */ | ||
rgba(243, 230, 192, 0. | rgba(243, 230, 192, 0.85) /* helles Fass / Vanille */ | ||
); | ); | ||
border- | border-bottom: 1px solid rgba(145, 104, 38, 0.45); | ||
box-shadow: 0 8px 18px rgba(80, 50, 20, 0.18); | |||
box-shadow: 0 | |||
color: #3a2a16; | |||
} | |||
/* Innen-Layout: links Text, rechts Linkspalten wie beim ConanWiki */ | |||
body.page-Hauptseitev2 .ados-hero__inner { | |||
max-width: 1200px; | |||
margin: 0 auto; | |||
display: flex; | |||
gap: 1.5rem; | |||
align-items: flex-start; | |||
justify-content: space-between; | |||
} | |||
/* Linker Block: Titel + Untertitel */ | |||
body.page-Hauptseitev2 .ados-hero__left { | |||
flex: 1 1 45%; | |||
} | } | ||
body.page-Hauptseitev2 .ados-hero__title { | body.page-Hauptseitev2 .ados-hero__title { | ||
font-size: 1.9rem; | |||
font-size: | |||
font-weight: 700; | font-weight: 700; | ||
color: # | margin: 0 0 .3rem; | ||
color: #4a2f10; | |||
} | } | ||
body.page-Hauptseitev2 .ados-hero__subtitle { | body.page-Hauptseitev2 .ados-hero__subtitle { | ||
margin: 0; | margin: 0; | ||
font-size: | font-size: 0.98rem; | ||
color: # | line-height: 1.5; | ||
} | |||
/* Rechter Block: 2–3 Spalten mit Links, wie Navigation beim ConanWiki */ | |||
body.page-Hauptseitev2 .ados-hero__right { | |||
flex: 1 1 55%; | |||
display: grid; | |||
grid-template-columns: repeat(3, minmax(0, 1fr)); | |||
gap: 0.75rem 1.25rem; | |||
font-size: 0.9rem; | |||
} | |||
body.page-Hauptseitev2 .ados-hero__heading { | |||
font-weight: 600; | |||
margin-bottom: 0.2rem; | |||
color: #5b3a14; | |||
} | |||
body.page-Hauptseitev2 .ados-hero__right ul { | |||
list-style: none; | |||
margin: 0; | |||
padding: 0; | |||
} | |||
body.page-Hauptseitev2 .ados-hero__right li { | |||
margin: 1px 0; | |||
} | |||
body.page-Hauptseitev2 .ados-hero__right a { | |||
text-decoration: none; | |||
} | } | ||
@media (max-width: | /* Linkfarben leicht dunkler Whisky-Ton */ | ||
body.page-Hauptseitev2 .ados-hero__right a:link, | |||
body.page-Hauptseitev2 .ados-hero__right a:visited { | |||
color: #7a4b18; | |||
} | |||
body.page-Hauptseitev2 .ados-hero__right a:hover { | |||
text-decoration: underline; | |||
} | |||
/* Mobile / kleine Screens – untereinander stapeln */ | |||
@media (max-width: 900px) { | |||
body.page-Hauptseitev2 .ados-hero { | body.page-Hauptseitev2 .ados-hero { | ||
margin- | margin: -0.3rem -0.8rem 0.9rem; | ||
padding: 1. | padding: 1.1rem 0.9rem 0.9rem; | ||
} | |||
body.page-Hauptseitev2 .ados-hero__inner { | |||
flex-direction: column; | |||
} | } | ||
body.page-Hauptseitev2 .ados-hero__title { | body.page-Hauptseitev2 .ados-hero__title { | ||
font-size: 1.6rem; | font-size: 1.6rem; | ||
text-align: center; | |||
} | |||
body.page-Hauptseitev2 .ados-hero__subtitle { | |||
text-align: center; | |||
margin-bottom: 0.6rem; | |||
} | |||
body.page-Hauptseitev2 .ados-hero__right { | |||
grid-template-columns: repeat(2, minmax(0, 1fr)); | |||
} | |||
} | |||
@media (max-width: 600px) { | |||
body.page-Hauptseitev2 .ados-hero { | |||
margin: -0.3rem -0.5rem 0.8rem; | |||
padding: 1rem 0.7rem 0.8rem; | |||
} | |||
body.page-Hauptseitev2 .ados-hero__right { | |||
grid-template-columns: 1fr; | |||
} | } | ||
} | } | ||
Version vom 22. November 2025, 23:29 Uhr
/* All CSS here will be loaded for users of the MinervaNeue skin */
/* kompakte Abstände & saubere Einrückung */
#ados-custom-links .toggle-list-item__anchor { padding: 6px 12px; }
#ados-custom-links .toggle-list__list .toggle-list-item__anchor { padding-left: 12px; }
/* Unterpunkte: keine Icons anzeigen (Sicherheitsgurt, falls doch welche auftauchen) */
#ados-custom-links .toggle-list__list .minerva-icon { display: none !important; }
/* ==== ADOS Hero-Bereich – Whisky-Balken wie ConanWiki ==== */
/* Breiter Balken über gesamte Inhaltsbreite, nur auf der Hauptseite */
body.page-Hauptseitev2 .ados-hero {
/* zieht den Bereich bis an den Rand des Inhalts (ConanWiki-Effekt) */
margin: -0.5rem -1.5rem 1.2rem;
padding: 1.4rem 1.5rem 1.1rem;
/* Whisky-Gold Farbverlauf, leicht transparent */
background: linear-gradient(
135deg,
rgba(217, 164, 65, 0.26), /* Gold */
rgba(243, 230, 192, 0.85) /* helles Fass / Vanille */
);
border-bottom: 1px solid rgba(145, 104, 38, 0.45);
box-shadow: 0 8px 18px rgba(80, 50, 20, 0.18);
color: #3a2a16;
}
/* Innen-Layout: links Text, rechts Linkspalten wie beim ConanWiki */
body.page-Hauptseitev2 .ados-hero__inner {
max-width: 1200px;
margin: 0 auto;
display: flex;
gap: 1.5rem;
align-items: flex-start;
justify-content: space-between;
}
/* Linker Block: Titel + Untertitel */
body.page-Hauptseitev2 .ados-hero__left {
flex: 1 1 45%;
}
body.page-Hauptseitev2 .ados-hero__title {
font-size: 1.9rem;
font-weight: 700;
margin: 0 0 .3rem;
color: #4a2f10;
}
body.page-Hauptseitev2 .ados-hero__subtitle {
margin: 0;
font-size: 0.98rem;
line-height: 1.5;
}
/* Rechter Block: 2–3 Spalten mit Links, wie Navigation beim ConanWiki */
body.page-Hauptseitev2 .ados-hero__right {
flex: 1 1 55%;
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 0.75rem 1.25rem;
font-size: 0.9rem;
}
body.page-Hauptseitev2 .ados-hero__heading {
font-weight: 600;
margin-bottom: 0.2rem;
color: #5b3a14;
}
body.page-Hauptseitev2 .ados-hero__right ul {
list-style: none;
margin: 0;
padding: 0;
}
body.page-Hauptseitev2 .ados-hero__right li {
margin: 1px 0;
}
body.page-Hauptseitev2 .ados-hero__right a {
text-decoration: none;
}
/* Linkfarben leicht dunkler Whisky-Ton */
body.page-Hauptseitev2 .ados-hero__right a:link,
body.page-Hauptseitev2 .ados-hero__right a:visited {
color: #7a4b18;
}
body.page-Hauptseitev2 .ados-hero__right a:hover {
text-decoration: underline;
}
/* Mobile / kleine Screens – untereinander stapeln */
@media (max-width: 900px) {
body.page-Hauptseitev2 .ados-hero {
margin: -0.3rem -0.8rem 0.9rem;
padding: 1.1rem 0.9rem 0.9rem;
}
body.page-Hauptseitev2 .ados-hero__inner {
flex-direction: column;
}
body.page-Hauptseitev2 .ados-hero__title {
font-size: 1.6rem;
text-align: center;
}
body.page-Hauptseitev2 .ados-hero__subtitle {
text-align: center;
margin-bottom: 0.6rem;
}
body.page-Hauptseitev2 .ados-hero__right {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (max-width: 600px) {
body.page-Hauptseitev2 .ados-hero {
margin: -0.3rem -0.5rem 0.8rem;
padding: 1rem 0.7rem 0.8rem;
}
body.page-Hauptseitev2 .ados-hero__right {
grid-template-columns: 1fr;
}
}