Weitere Optionen
KKeine Bearbeitungszusammenfassung |
(CSS-Klassen präzisiert) |
||
(37 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
Zeile 197: | Zeile 197: | ||
display: inline-block; | display: inline-block; | ||
position: relative; | position: relative; | ||
margin: 20px | margin: 20px 20px 15px 20px; | ||
} | } | ||
Zeile 290: | Zeile 290: | ||
/* Heftromane */ | /* Heftromane */ | ||
.heftroman-cover { | .heftroman-cover { | ||
display: inline-block; | |||
position: relative; | |||
width: 205px; /* Anpassbare Breite */ | |||
height: 298px; /* Anpassbare Höhe */ | |||
background: #e0e1dc; | |||
transform-style: preserve-3d; | |||
perspective: 2000px; | |||
box-shadow: inset 300px 0 50px rgba(0, 0, 0, .5), 20px 0 60px rgba(0, 0, 0, .5); | |||
transition: 1s; | |||
margin: 20px 5px 5px 10px; | |||
} | } | ||
.heftroman-cover: | .heftroman-cover:before { | ||
content: ''; | |||
position: absolute; | |||
top: -5px; | |||
left: 0; | |||
width: 100%; | |||
height: 5px; | |||
background: #BAC1BA; | |||
transform-origin: bottom; | |||
transform: skewX(-45deg); | |||
} | } | ||
.heftroman-cover | .heftroman-cover:after { | ||
content: ''; | |||
position: absolute; | |||
top: 0; | |||
right: -5px; | |||
width: 5px; | |||
height: 100%; | |||
background: #92A29C; | |||
transform-origin: left; | |||
transform: skewY(-45deg); | |||
} | } | ||
.heftroman-cover . | .heftroman-cover .imgBox { | ||
width: 100%; | |||
height: 100%; | |||
position: relative; | |||
transform-origin: left; | |||
transition: .7s; | |||
} | } | ||
.heftroman-cover . | .heftroman-cover .bark { | ||
position: absolute; | |||
background: #e0e1dc; | |||
transition: | width: 100%; | ||
height: 100%; | |||
opacity: 0; | |||
transition: .7s; | |||
} | |||
.heftroman-cover img { | |||
display: block; | |||
width: 100%; | |||
height: 100%; | |||
border: none; /* Entfernen des weißen Rahmens */ | |||
box-shadow: none; /* Entfernen des Schatten um das Bild */ | |||
border-radius: 0; /* Entfernen der abgerundeten Ecken */ | |||
object-fit: cover; /* Sicherstellen, dass das Bild die gesamte Fläche ausfüllt */ | |||
} | |||
/* Roman-Infoboxen */ | |||
/* Infobox Styling */ | |||
.infobox-header { | |||
background-color: var(--color-surface-1); | |||
border: 1px solid var(--border-color-base); | |||
border-radius: 8px; | |||
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.04), 0 3px 6px rgba(0, 0, 0, 0.0575); | |||
margin-bottom: var(--space-md); | |||
} | |||
.heftartikel-tabelle { | |||
width: 100%; | |||
border-collapse: collapse; | |||
} | |||
.heftartikel-tabelle th { | |||
background-color: var(--color-surface-2); | |||
color: var(--color-base--emphasized); | |||
font-weight: var(--font-weight-semibold); | |||
text-align: left; | |||
padding: var(--space-xs); | |||
} | |||
.heftartikel-tabelle td { | |||
padding: var(--space-xs); | |||
border-bottom: 1px solid var(--border-color-base); | |||
} | |||
.heftartikel-tabelle tr:last-child td { | |||
border-bottom: none; | |||
} | |||
.bild-container { | |||
text-align: center; | |||
} | |||
.bild-inhalt img { | |||
max-width: 100%; | |||
height: auto; | |||
border-radius: var(--border-radius--medium); | |||
} | |||
/* Bewertungssystem Styling */ | |||
.rating-score { | |||
margin-bottom: var(--space-xxs); | |||
display: inline-block; | |||
padding: var(--space-xxs) var(--space-xs); | |||
font-size: 1.2em; | |||
font-weight: var(--font-weight-semibold); | |||
border-radius: var(--border-radius--small); | |||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); | |||
background-color: var(--color-surface-2); | |||
color: var(--color-base--emphasized); | |||
-webkit-background-clip: text; | |||
background-clip: text; | |||
position: relative; | |||
} | |||
.voteboxrate::before { | |||
content: ''; | |||
position: absolute; | |||
top: 0; | |||
left: 0; | |||
right: 0; | |||
bottom: 0; | |||
background: inherit; | |||
filter: blur(10px); | |||
opacity: 0.3; | |||
z-index: -1; | |||
} | |||
.rating-low { | |||
color: red; | |||
} | |||
.rating-medium-low { | |||
color: orange; | |||
} | |||
.rating-medium { | |||
color: yellow; | |||
} | |||
.rating-medium-high { | |||
color: lightgreen; | |||
} | |||
.rating-high { | |||
color: green; | |||
} | |||
/* Hervorhebung für wichtige Informationen */ | |||
.infobox-row { | |||
background-color: var(--color-surface-2--hover); | |||
} | |||
/* Responsive Design */ | |||
@media (max-width: 768px) { | |||
.heftartikel-tabelle, .heftartikel-tabelle tbody, .heftartikel-tabelle tr, .heftartikel-tabelle td { | |||
display: block; | |||
} | |||
.heftartikel-tabelle td { | |||
text-align: right; | |||
padding-left: 50%; | |||
position: relative; | |||
} | |||
.heftartikel-tabelle td:before { | |||
content: attr(data-label); | |||
position: absolute; | |||
left: var(--space-xs); | |||
width: 45%; | |||
padding-right: var(--space-xs); | |||
white-space: nowrap; | |||
text-align: left; | |||
font-weight: var(--font-weight-semibold); | |||
} | |||
} | |||
/* Heftnummern-Navigation */ | |||
.heftartikel-navigationsleiste-anfang { | |||
background-color: #1e2124; /* Dunkler Hintergrund */ | |||
color: #ffffff; /* Weiße Schrift */ | |||
padding: 10px; | |||
border-radius: 8px; | |||
margin-bottom: 20px; | |||
} | |||
.heftartikel-titel { | |||
font-size: 1.2em; | |||
font-weight: bold; | |||
text-align: center; | |||
margin-bottom: 10px; | |||
} | |||
.heftartikel-titel a { | |||
color: #ffffff; | |||
text-decoration: none; | |||
} | |||
/* Zyklus-Navigation */ | |||
.heftartikel-navigationsleiste-anfang > div:nth-child(3) { | |||
text-align: center; | |||
margin: 10px 0; | |||
} | |||
.heftartikel-navigationsleiste-anfang > div:nth-child(3) a { | |||
color: #6c8cd5; /* Hellblau für Links */ | |||
} | |||
/* Heftnummern-Navigation */ | |||
.heftartikel-navigationsleiste-anfang > a, | |||
.heftartikel-navigationsleiste-anfang > b { | |||
display: inline-block; | |||
padding: 5px 10px; | |||
margin: 0 2px; | |||
text-align: center; | |||
} | |||
.heftartikel-navigationsleiste-anfang > a:hover { | |||
background-color: #3a3f45; /* Etwas hellerer Hintergrund beim Hover */ | |||
} | |||
.heftartikel-navigationsleiste-anfang > b { | |||
background-color: #4b6bab; /* Blauer Hintergrund für aktuelle Seite */ | |||
} | |||
.nav-zahlen { | |||
text-align: center; | |||
} | |||
/* Tabellen */ | |||
.wikitable .smwtype_num, | |||
.wikitable .smwtype_qty { | |||
text-align: right; | |||
} | |||
.flex-wrapper { | |||
display: flex; | |||
overflow-x: auto; | |||
} | |||
body.skin-citizen .wikitable thead { | |||
background-color: var(--color-surface-2); | |||
} | |||
body.skin-citizen .wikitable tr:nth-child(even) { | |||
background-color: var( --color-surface-1 ); | |||
} | |||
body.skin-citizen .wikitable tr:nth-child(even):hover { | |||
background-color: var(--color-surface-2--hover); | |||
} | |||
/* Portal Geschichte */ | |||
.portal-geschichte { | |||
font-family: var(--font-family-base); | |||
max-width: 1200px; | |||
margin: 0 auto; | |||
padding: var(--space-md); | |||
background-color: var(--color-surface-1); | |||
border-radius: var(--border-radius--large); | |||
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.04), 0 3px 6px rgba(0, 0, 0, 0.0575); | |||
} | |||
/* Überschriften */ | |||
.portal-geschichte h2 { | |||
color: var(--color-base--emphasized); | |||
border-bottom: 2px solid var(--border-color-base); | |||
padding-bottom: var(--space-xs); | |||
font-size: 1.5rem; | |||
font-weight: var(--font-weight-semibold); | |||
} | |||
.portal-geschichte h4 { | |||
color: var(--color-base); | |||
margin-top: var(--space-md); | |||
font-size: 1.2rem; | |||
font-weight: var(--font-weight-medium); | |||
} | |||
/* Navigationstabellen */ | |||
.portal-geschichte-navigation table, | |||
.portal-geschichte-monate table, | |||
.portal-geschichte-jahre table { | |||
width: 100%; | |||
border-collapse: collapse; | |||
margin-bottom: var(--space-md); | |||
} | |||
.portal-geschichte-navigation td, | |||
.portal-geschichte-monate td, | |||
.portal-geschichte-jahre td { | |||
padding: var(--space-xs); | |||
text-align: center; | |||
border: 1px solid var(--border-color-base); | |||
} | |||
/* Links */ | |||
.portal-geschichte a { | |||
color: var(--color-link); | |||
text-decoration: none; | |||
transition: color 0.3s; | |||
} | |||
.portal-geschichte a:hover { | |||
color: var(--color-link--hover); | |||
text-decoration: underline; | |||
} | |||
/* Spezielle Formatierungen */ | |||
.portal-geschichte b { | |||
font-weight: var(--font-weight-bold); | |||
} | |||
.portal-geschichte .new { | |||
color: var(--color-destructive); | |||
} | |||
/* Responsive Design */ | |||
@media (max-width: 768px) { | |||
.portal-geschichte-navigation td, | |||
.portal-geschichte-monate td, | |||
.portal-geschichte-jahre td { | |||
display: block; | |||
width: 100%; | |||
} | |||
} | |||
/* Zusätzliche Verschönerungen */ | |||
.portal-geschichte-navigation, | |||
.portal-geschichte-monate, | |||
.portal-geschichte-jahre { | |||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); | |||
background-color: var(--color-surface-2); | |||
border-radius: var(--border-radius--medium); | |||
overflow: hidden; | |||
} | |||
.portal-geschichte-navigation th, | |||
.portal-geschichte-monate th { | |||
background-color: var(--color-surface-2--hover); | |||
font-weight: var(--font-weight-semibold); | |||
} | |||
.portal-geschichte-jahre td { | |||
vertical-align: top; | |||
} | |||
/* Hervorhebung für Haupthandlungszeitraum */ | |||
.portal-geschichte-jahre b a { | |||
color: var(--color-accent); | |||
font-weight: var(--font-weight-bold); | |||
} | |||
/* Portal Religion */ | |||
/* Portal Religion */ | |||
.portal-religion { | |||
font-family: var(--font-family-base); | |||
max-width: 1200px; | |||
margin: 0 auto; | |||
padding: var(--space-md); | |||
background-color: var(--color-surface-1); | |||
border-radius: var(--border-radius--large); | |||
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.04), 0 3px 6px rgba(0, 0, 0, 0.0575); | |||
} | |||
/* Überschriften */ | |||
.portal-religion h1, .portal-religion h2, .portal-religion h3, .portal-religion h4 { | |||
color: var(--color-base--emphasized); | |||
border-bottom: 2px solid var(--border-color-base); | |||
padding-bottom: var(--space-xs); | |||
margin-top: var(--space-md); | |||
font-weight: var(--font-weight-semibold); | |||
} | |||
.portal-religion h1 { font-size: 1.8rem; } | |||
.portal-religion h2 { font-size: 1.5rem; } | |||
.portal-religion h3 { font-size: 1.3rem; } | |||
.portal-religion h4 { font-size: 1.1rem; } | |||
/* Tabelle */ | |||
.portal-religion table { | |||
width: 100%; | |||
border-collapse: collapse; | |||
margin-bottom: var(--space-md); | |||
} | |||
.portal-religion td { | |||
padding: var(--space-xs); | |||
border: 1px solid var(--border-color-base); | |||
vertical-align: top; | |||
} | |||
/* Links */ | |||
.portal-religion a { | |||
color: var(--color-link); | |||
text-decoration: none; | |||
transition: color 0.3s; | |||
} | |||
.portal-religion a:hover { | |||
color: var(--color-link--hover); | |||
text-decoration: underline; | |||
} | |||
/* Listen */ | |||
.portal-religion ul { | |||
padding-left: var(--space-md); | |||
margin: var(--space-xs) 0; | |||
} | |||
.portal-religion li { | |||
margin-bottom: var(--space-xxs); | |||
} | |||
/* Spezielle Formatierungen */ | |||
.portal-religion .new { | |||
color: var(--color-destructive); | |||
} | |||
/* Responsive Design */ | |||
@media (max-width: 768px) { | |||
.portal-religion table, .portal-religion tbody, .portal-religion tr, .portal-religion td { | |||
display: block; | |||
width: 100%; | |||
} | |||
.portal-religion td { | |||
margin-bottom: var(--space-sm); | |||
} | |||
} | |||
/* Zusätzliche Verschönerungen */ | |||
.portal-religion { | |||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); | |||
background-color: var(--color-surface-2); | |||
border-radius: var(--border-radius--medium); | |||
overflow: hidden; | |||
} | |||
/* Abschnitte */ | |||
.portal-religion > tbody > tr:nth-child(odd) { | |||
background-color: var(--color-surface-1); | |||
} | |||
.portal-religion > tbody > tr:nth-child(even) { | |||
background-color: var(--color-surface-2); | |||
} | |||
/* Hervorhebungen */ | |||
.portal-religion b, .portal-religion strong { | |||
font-weight: var(--font-weight-bold); | |||
color: var(--color-accent); | |||
} | |||
/* Infobox Styling */ | |||
.mw-parser-output > .infobox { | |||
float: right; | |||
clear: right; | |||
width: 300px; | |||
margin: 0 0 1em 1em; | |||
background-color: var(--color-surface-2); | |||
border: 1px solid var(--border-color-base); | |||
border-radius: var(--border-radius--medium); | |||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); | |||
font-size: 0.9em; | |||
line-height: 1.3; | |||
} | |||
.mw-parser-output > .infobox > tbody > tr > th { | |||
vertical-align: top; | |||
padding: 0.4em 0.6em; | |||
background-color: var(--color-surface-2--hover); | |||
border-bottom: 1px solid var(--border-color-base); | |||
} | |||
.mw-parser-output > .infobox > tbody > tr > td { | |||
vertical-align: top; | |||
padding: 0.4em 0.6em; | |||
border-bottom: 1px solid var(--border-color-base); | |||
} | |||
.mw-parser-output > .infobox > tbody > tr:last-child > td { | |||
border-bottom: none; | |||
} | |||
.mw-parser-output > .infobox img { | |||
max-width: 100%; | |||
height: auto; | |||
display: block; | |||
margin: 0 auto; | |||
} | } | ||
/* Artikel-Text Styling */ | |||
.mw-body-content { | |||
overflow: hidden; /* Verhindert, dass der Text unter die Infobox fließt */ | |||
} | } | ||
/* Responsive Design */ | |||
@media (max-width: 768px) { | |||
.mw-parser-output > .infobox { | |||
float: none; | |||
width: 100%; | |||
margin: 1em 0; | |||
} | |||
} | } | ||
. | /* Spezifisches Styling für die Infobox-Header */ | ||
.mw-parser-output > .infobox > tbody > tr:first-child > th { | |||
background-color: var(--color-surface-3); | |||
color: var(--color-base--emphasized); | |||
font-weight: bold; | |||
padding: 0.5em; | |||
text-align: center; | |||
border-bottom: 1px solid var(--border-color-base); | |||
} | } |
Aktuelle Version vom 8. September 2024, 16:20 Uhr
/* Hauptseite Layout */ .home-grid { display: grid; grid: auto-flow dense/repeat( auto-fit, minmax( 10rem, 1fr ) ); grid-auto-rows: minmax( 3rem, auto ); grid-gap: var( --space-xs ); } .home-grid--col2 { grid-template-columns: 1fr 1fr; } .home-grid a.external { background-image: none; } .home-card { position: relative; padding: var( --space-md ); background: var( --color-surface-1 ); border: 1px solid var( --border-color-base ); border-radius: 8px; box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.04 ), 0 3px 6px rgba( 0, 0, 0, 0.0575 ); font-size: 0.875rem; } .home-card table.timeline { margin-top: 0.2rem; } .home-card--col2 { grid-column: span 2; } .home-card--row3 { grid-row: span 3; } .home-card--row4 { grid-row: span 4; } .home-card--row8 { grid-row: span 8 / auto; } .home-card__label { color: var( --color-base--subtle ); font-size: 0.8125rem; letter-spacing: 0.75px; } .home-card__header { color: var( --color-base--emphasized ); font-size: 1rem; font-weight: var( --font-weight-semibold ); line-height: var( --line-height-xs ); } .home-card__header a { display: flex; align-items: center; justify-content: space-between; } .home-card__header a:after { content: '▶'; font-size: 0.8125rem; } .home-card__background { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: #242a31; border-radius: 8px; } .home-card__background:after { position: absolute; pointer-events: none; top: 0; bottom: 0; left: 0; right: 0; display: block; background: linear-gradient(to right,#000,transparent); content: ""; } .home-card__background img { width: 100%; height: 100%; object-fit: cover; object-position: center; } .home-card__foreground { position: absolute; top: 0; bottom: 0; left: 0; right: 0; padding: var( --space-md ); display: flex; flex-direction: column; justify-content: center; gap: var( --space-xxs ); color: #fff; line-height: var( --line-height-xs ); pointer-events: none; } .home-card__foreground .home-card__header { color: #fff; } .home-card__foreground .home-card__label { color: #bababa; } .home-card p { margin-top: var( --space-xs ); font-size: 0.875rem; } .home-card.home-card--button { overflow: hidden; padding: 0; background: #242a31; border: 0; } .home-card--button a { display: flex; height: 100%; justify-content: center; align-items: center; padding: 0 var( --space-md ); background: transparent; color: #fff; font-weight: 500; } .home-card--button .home-card__background a { padding: 0; } .home-card--button img { transition: transform 0.2s ease; } .home-card--button:hover img { transform: scale(1.1); } .home-link { display: grid; margin-top: var( --space-xs ); font-size: 0.875rem; font-weight: 500; grid-gap: var( --space-xs ); text-align: center; } .home-link__button { display: flex; } .home-link__button a { flex-grow: 1; padding: var( --space-xs ); border: 1px solid var( --border-color-base ); background: var( --color-surface-2 ); border-radius: var( --border-radius--medium ); color: var( --color-base--emphasized ) !important; line-height: var( --line-height-xs ); text-decoration: none !important; } .home-link__button a:hover { background: var( --color-surface-2--hover ); } .home-link__button a:active { background: var( --color-surface-2--active ); } #home-content { margin-top: var( --space-lg ); } .home-stats { flex-grow: 1; line-height: 1; } .home-stats__value { font-size: 1.5rem; font-weight: 600; } .home-stats__unit { margin-top: var( --space-xxs ); color: var( --color-base--subtle ); font-size: 0.8125rem; } .home-footer { font-size: 0.8125rem; font-family: monospace; text-align: center; } /* Buttons Hauptseite */ #home-nav { margin-top: 1rem; } #home-nav .home-card__foreground { font-weight: var( --font-weight-medium ); } #home-nav .home-card.home-card--button { height: 5rem; } /* Hörbuch-Cover */ .hörbuch-cover { display: inline-block; position: relative; margin: 20px 20px 15px 20px; } .hörbuch-cover::before { content: ''; position: absolute; top: -3px; left: -25px; right: -5px; bottom: -3px; border-radius: 3px; background: rgba(0,0,0,0); box-shadow: 0px 2px 10px 1px rgba(0,0,0,0.6), inset 0px 0px 20px 2px rgba(0,0,0,0.4), inset 0px 0px 5px 1px rgba(255,255,255,0.6), inset 0px 0px 0px 1px rgba(255,255,255,0.2); z-index: -1; } .hörbuch-cover .mw-default-size { display: block; position: relative; } .hörbuch-cover .mw-default-size a { display: block; position: relative; border-radius: 3px; overflow: hidden; } .hörbuch-cover .mw-default-size img { display: block; box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.5), inset 0px 0px 16px 2px rgba(0,0,0,0.1), inset 0px 0px 0px 1px rgba(255,255,255,0.3); } .hörbuch-cover .mw-default-size::before, .hörbuch-cover .mw-default-size::after, .hörbuch-cover .mw-default-size a::before, .hörbuch-cover .mw-default-size a::after { content: ''; position: absolute; width: 20px; height: 10px; background: rgba(255,255,255,0.15); box-shadow: inset 0px 0px 6px 1px rgba(0,0,0,0.22), inset 0px 0px 1px 1px rgba(255,255,255,0.17); z-index: 1; } .hörbuch-cover .mw-default-size::before { top: 0; left: 20px; border-radius: 0 0 5px 5px; } .hörbuch-cover .mw-default-size::after { top: 0; right: 20px; border-radius: 0 0 5px 5px; } .hörbuch-cover .mw-default-size a::before { bottom: 0; left: 20px; border-radius: 5px 5px 0 0; } .hörbuch-cover .mw-default-size a::after { bottom: 0; right: 20px; border-radius: 5px 5px 0 0; } .hörbuch-cover::after { content: ''; position: absolute; top: 40px; left: -25px; width: 15px; height: 220px; background: linear-gradient(to bottom, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.07) 100%); box-shadow: 3px 0px 5px 0px rgba(0,0,0,0.23), inset 0px 0px 7px 0px rgba(0,0,0,0.22), inset 0px 0px 0px 1px rgba(255,255,255,0.22); border-radius: 0 50% 50% 0; z-index: -1; } /* Heftromane */ .heftroman-cover { display: inline-block; position: relative; width: 205px; /* Anpassbare Breite */ height: 298px; /* Anpassbare Höhe */ background: #e0e1dc; transform-style: preserve-3d; perspective: 2000px; box-shadow: inset 300px 0 50px rgba(0, 0, 0, .5), 20px 0 60px rgba(0, 0, 0, .5); transition: 1s; margin: 20px 5px 5px 10px; } .heftroman-cover:before { content: ''; position: absolute; top: -5px; left: 0; width: 100%; height: 5px; background: #BAC1BA; transform-origin: bottom; transform: skewX(-45deg); } .heftroman-cover:after { content: ''; position: absolute; top: 0; right: -5px; width: 5px; height: 100%; background: #92A29C; transform-origin: left; transform: skewY(-45deg); } .heftroman-cover .imgBox { width: 100%; height: 100%; position: relative; transform-origin: left; transition: .7s; } .heftroman-cover .bark { position: absolute; background: #e0e1dc; width: 100%; height: 100%; opacity: 0; transition: .7s; } .heftroman-cover img { display: block; width: 100%; height: 100%; border: none; /* Entfernen des weißen Rahmens */ box-shadow: none; /* Entfernen des Schatten um das Bild */ border-radius: 0; /* Entfernen der abgerundeten Ecken */ object-fit: cover; /* Sicherstellen, dass das Bild die gesamte Fläche ausfüllt */ } /* Roman-Infoboxen */ /* Infobox Styling */ .infobox-header { background-color: var(--color-surface-1); border: 1px solid var(--border-color-base); border-radius: 8px; box-shadow: 0 3px 6px rgba(0, 0, 0, 0.04), 0 3px 6px rgba(0, 0, 0, 0.0575); margin-bottom: var(--space-md); } .heftartikel-tabelle { width: 100%; border-collapse: collapse; } .heftartikel-tabelle th { background-color: var(--color-surface-2); color: var(--color-base--emphasized); font-weight: var(--font-weight-semibold); text-align: left; padding: var(--space-xs); } .heftartikel-tabelle td { padding: var(--space-xs); border-bottom: 1px solid var(--border-color-base); } .heftartikel-tabelle tr:last-child td { border-bottom: none; } .bild-container { text-align: center; } .bild-inhalt img { max-width: 100%; height: auto; border-radius: var(--border-radius--medium); } /* Bewertungssystem Styling */ .rating-score { margin-bottom: var(--space-xxs); display: inline-block; padding: var(--space-xxs) var(--space-xs); font-size: 1.2em; font-weight: var(--font-weight-semibold); border-radius: var(--border-radius--small); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); background-color: var(--color-surface-2); color: var(--color-base--emphasized); -webkit-background-clip: text; background-clip: text; position: relative; } .voteboxrate::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: inherit; filter: blur(10px); opacity: 0.3; z-index: -1; } .rating-low { color: red; } .rating-medium-low { color: orange; } .rating-medium { color: yellow; } .rating-medium-high { color: lightgreen; } .rating-high { color: green; } /* Hervorhebung für wichtige Informationen */ .infobox-row { background-color: var(--color-surface-2--hover); } /* Responsive Design */ @media (max-width: 768px) { .heftartikel-tabelle, .heftartikel-tabelle tbody, .heftartikel-tabelle tr, .heftartikel-tabelle td { display: block; } .heftartikel-tabelle td { text-align: right; padding-left: 50%; position: relative; } .heftartikel-tabelle td:before { content: attr(data-label); position: absolute; left: var(--space-xs); width: 45%; padding-right: var(--space-xs); white-space: nowrap; text-align: left; font-weight: var(--font-weight-semibold); } } /* Heftnummern-Navigation */ .heftartikel-navigationsleiste-anfang { background-color: #1e2124; /* Dunkler Hintergrund */ color: #ffffff; /* Weiße Schrift */ padding: 10px; border-radius: 8px; margin-bottom: 20px; } .heftartikel-titel { font-size: 1.2em; font-weight: bold; text-align: center; margin-bottom: 10px; } .heftartikel-titel a { color: #ffffff; text-decoration: none; } /* Zyklus-Navigation */ .heftartikel-navigationsleiste-anfang > div:nth-child(3) { text-align: center; margin: 10px 0; } .heftartikel-navigationsleiste-anfang > div:nth-child(3) a { color: #6c8cd5; /* Hellblau für Links */ } /* Heftnummern-Navigation */ .heftartikel-navigationsleiste-anfang > a, .heftartikel-navigationsleiste-anfang > b { display: inline-block; padding: 5px 10px; margin: 0 2px; text-align: center; } .heftartikel-navigationsleiste-anfang > a:hover { background-color: #3a3f45; /* Etwas hellerer Hintergrund beim Hover */ } .heftartikel-navigationsleiste-anfang > b { background-color: #4b6bab; /* Blauer Hintergrund für aktuelle Seite */ } .nav-zahlen { text-align: center; } /* Tabellen */ .wikitable .smwtype_num, .wikitable .smwtype_qty { text-align: right; } .flex-wrapper { display: flex; overflow-x: auto; } body.skin-citizen .wikitable thead { background-color: var(--color-surface-2); } body.skin-citizen .wikitable tr:nth-child(even) { background-color: var( --color-surface-1 ); } body.skin-citizen .wikitable tr:nth-child(even):hover { background-color: var(--color-surface-2--hover); } /* Portal Geschichte */ .portal-geschichte { font-family: var(--font-family-base); max-width: 1200px; margin: 0 auto; padding: var(--space-md); background-color: var(--color-surface-1); border-radius: var(--border-radius--large); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.04), 0 3px 6px rgba(0, 0, 0, 0.0575); } /* Überschriften */ .portal-geschichte h2 { color: var(--color-base--emphasized); border-bottom: 2px solid var(--border-color-base); padding-bottom: var(--space-xs); font-size: 1.5rem; font-weight: var(--font-weight-semibold); } .portal-geschichte h4 { color: var(--color-base); margin-top: var(--space-md); font-size: 1.2rem; font-weight: var(--font-weight-medium); } /* Navigationstabellen */ .portal-geschichte-navigation table, .portal-geschichte-monate table, .portal-geschichte-jahre table { width: 100%; border-collapse: collapse; margin-bottom: var(--space-md); } .portal-geschichte-navigation td, .portal-geschichte-monate td, .portal-geschichte-jahre td { padding: var(--space-xs); text-align: center; border: 1px solid var(--border-color-base); } /* Links */ .portal-geschichte a { color: var(--color-link); text-decoration: none; transition: color 0.3s; } .portal-geschichte a:hover { color: var(--color-link--hover); text-decoration: underline; } /* Spezielle Formatierungen */ .portal-geschichte b { font-weight: var(--font-weight-bold); } .portal-geschichte .new { color: var(--color-destructive); } /* Responsive Design */ @media (max-width: 768px) { .portal-geschichte-navigation td, .portal-geschichte-monate td, .portal-geschichte-jahre td { display: block; width: 100%; } } /* Zusätzliche Verschönerungen */ .portal-geschichte-navigation, .portal-geschichte-monate, .portal-geschichte-jahre { box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); background-color: var(--color-surface-2); border-radius: var(--border-radius--medium); overflow: hidden; } .portal-geschichte-navigation th, .portal-geschichte-monate th { background-color: var(--color-surface-2--hover); font-weight: var(--font-weight-semibold); } .portal-geschichte-jahre td { vertical-align: top; } /* Hervorhebung für Haupthandlungszeitraum */ .portal-geschichte-jahre b a { color: var(--color-accent); font-weight: var(--font-weight-bold); } /* Portal Religion */ /* Portal Religion */ .portal-religion { font-family: var(--font-family-base); max-width: 1200px; margin: 0 auto; padding: var(--space-md); background-color: var(--color-surface-1); border-radius: var(--border-radius--large); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.04), 0 3px 6px rgba(0, 0, 0, 0.0575); } /* Überschriften */ .portal-religion h1, .portal-religion h2, .portal-religion h3, .portal-religion h4 { color: var(--color-base--emphasized); border-bottom: 2px solid var(--border-color-base); padding-bottom: var(--space-xs); margin-top: var(--space-md); font-weight: var(--font-weight-semibold); } .portal-religion h1 { font-size: 1.8rem; } .portal-religion h2 { font-size: 1.5rem; } .portal-religion h3 { font-size: 1.3rem; } .portal-religion h4 { font-size: 1.1rem; } /* Tabelle */ .portal-religion table { width: 100%; border-collapse: collapse; margin-bottom: var(--space-md); } .portal-religion td { padding: var(--space-xs); border: 1px solid var(--border-color-base); vertical-align: top; } /* Links */ .portal-religion a { color: var(--color-link); text-decoration: none; transition: color 0.3s; } .portal-religion a:hover { color: var(--color-link--hover); text-decoration: underline; } /* Listen */ .portal-religion ul { padding-left: var(--space-md); margin: var(--space-xs) 0; } .portal-religion li { margin-bottom: var(--space-xxs); } /* Spezielle Formatierungen */ .portal-religion .new { color: var(--color-destructive); } /* Responsive Design */ @media (max-width: 768px) { .portal-religion table, .portal-religion tbody, .portal-religion tr, .portal-religion td { display: block; width: 100%; } .portal-religion td { margin-bottom: var(--space-sm); } } /* Zusätzliche Verschönerungen */ .portal-religion { box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); background-color: var(--color-surface-2); border-radius: var(--border-radius--medium); overflow: hidden; } /* Abschnitte */ .portal-religion > tbody > tr:nth-child(odd) { background-color: var(--color-surface-1); } .portal-religion > tbody > tr:nth-child(even) { background-color: var(--color-surface-2); } /* Hervorhebungen */ .portal-religion b, .portal-religion strong { font-weight: var(--font-weight-bold); color: var(--color-accent); } /* Infobox Styling */ .mw-parser-output > .infobox { float: right; clear: right; width: 300px; margin: 0 0 1em 1em; background-color: var(--color-surface-2); border: 1px solid var(--border-color-base); border-radius: var(--border-radius--medium); box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); font-size: 0.9em; line-height: 1.3; } .mw-parser-output > .infobox > tbody > tr > th { vertical-align: top; padding: 0.4em 0.6em; background-color: var(--color-surface-2--hover); border-bottom: 1px solid var(--border-color-base); } .mw-parser-output > .infobox > tbody > tr > td { vertical-align: top; padding: 0.4em 0.6em; border-bottom: 1px solid var(--border-color-base); } .mw-parser-output > .infobox > tbody > tr:last-child > td { border-bottom: none; } .mw-parser-output > .infobox img { max-width: 100%; height: auto; display: block; margin: 0 auto; } /* Artikel-Text Styling */ .mw-body-content { overflow: hidden; /* Verhindert, dass der Text unter die Infobox fließt */ } /* Responsive Design */ @media (max-width: 768px) { .mw-parser-output > .infobox { float: none; width: 100%; margin: 1em 0; } } /* Spezifisches Styling für die Infobox-Header */ .mw-parser-output > .infobox > tbody > tr:first-child > th { background-color: var(--color-surface-3); color: var(--color-base--emphasized); font-weight: bold; padding: 0.5em; text-align: center; border-bottom: 1px solid var(--border-color-base); }