Weitere Optionen
Keine Bearbeitungszusammenfassung Markierung: Zurückgesetzt |
Keine Bearbeitungszusammenfassung Markierungen: Manuelle Zurücksetzung Zurückgesetzt |
||
| Zeile 6: | Zeile 6: | ||
--dsa-orange: #ff8a1f; | --dsa-orange: #ff8a1f; | ||
--dsa-gold: #ffc15a; | --dsa-gold: #ffc15a; | ||
--dsa-text-accent: #ffb15c; | |||
} | } | ||
| Zeile 21: | Zeile 22: | ||
position: relative; | position: relative; | ||
overflow: hidden; | overflow: hidden; | ||
border: 1px solid rgba(255,138,31,0. | border: 1px solid rgba(255,138,31,0.15); | ||
border-radius: 20px; | border-radius: 20px; | ||
background: | background: | ||
linear-gradient(135deg, rgba( | linear-gradient(135deg, rgba(36,10,8,0.96), rgba(80,24,13,0.94)), | ||
url("/images/hero-placeholder.jpg") center/cover no-repeat; | url("/images/hero-placeholder.jpg") center/cover no-repeat; | ||
min-height: 360px; | min-height: 360px; | ||
| Zeile 39: | Zeile 40: | ||
background: | background: | ||
radial-gradient(circle at top right, rgba(255,138,31,0.25), transparent 28%), | radial-gradient(circle at top right, rgba(255,138,31,0.25), transparent 28%), | ||
linear-gradient(to right, rgba( | linear-gradient(to right, rgba(10,4,3,0.85), rgba(10,4,3,0.3)); | ||
pointer-events: none; | |||
} | } | ||
| Zeile 54: | Zeile 56: | ||
letter-spacing: 0.18em; | letter-spacing: 0.18em; | ||
color: var(--dsa-orange); | color: var(--dsa-orange); | ||
margin-bottom: 0.8rem; | |||
} | } | ||
| Zeile 59: | Zeile 62: | ||
margin: 0 0 0.75rem 0; | margin: 0 0 0.75rem 0; | ||
font-size: clamp(2rem, 4vw, 3.4rem); | font-size: clamp(2rem, 4vw, 3.4rem); | ||
line-height: 1.05; | |||
font-weight: 800; | font-weight: 800; | ||
} | } | ||
.sc-hero p { | .sc-hero p { | ||
color: rgba(255,255,255,0. | font-size: 1.05rem; | ||
line-height: 1.7; | |||
color: rgba(255,255,255,0.88); | |||
max-width: 60ch; | |||
margin-bottom: 1.4rem; | |||
} | } | ||
/* ===== BUTTONS ===== */ | /* ===== BUTTONS ===== */ | ||
.sc-hero-buttons { | |||
display: flex; | |||
flex-wrap: wrap; | |||
gap: 0.75rem; | |||
} | |||
.sc-btn { | |||
display: inline-block; | |||
padding: 0.82rem 1.15rem; | |||
border-radius: 12px; | |||
font-weight: 700; | |||
text-decoration: none; | |||
} | |||
.sc-btn-primary { | .sc-btn-primary { | ||
| Zeile 74: | Zeile 96: | ||
.sc-btn-secondary { | .sc-btn-secondary { | ||
background: rgba(255,255,255,0. | background: rgba(255,255,255,0.06); | ||
border: 1px solid rgba(255,138,31,0. | color: #fff; | ||
border: 1px solid rgba(255,138,31,0.2); | |||
} | |||
/* ===== SECTIONS ===== */ | |||
.sc-section { | |||
margin-bottom: 2rem; | |||
} | |||
.sc-section-header { | |||
margin-bottom: 1rem; | |||
} | |||
.sc-section-header h2 { | |||
margin-bottom: 0.25rem; | |||
font-size: 1.6rem; | |||
font-weight: 750; | |||
} | |||
.sc-section-header p { | |||
margin: 0; | |||
color: rgba(255,255,255,0.72); | |||
} | } | ||
| Zeile 87: | Zeile 131: | ||
.sc-card { | .sc-card { | ||
background: linear-gradient(180deg, | background: linear-gradient(180deg, rgba(38,18,14,0.98), rgba(22,12,10,0.98)); | ||
border: 1px solid rgba(255, | border: 1px solid rgba(255,138,31,0.15); | ||
border-radius: 18px; | border-radius: 18px; | ||
padding: 1.2rem; | padding: 1.2rem; | ||
transition: | box-shadow: 0 10px 24px rgba(0,0,0,0.25); | ||
transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease; | |||
} | } | ||
.sc-card:hover { | .sc-card:hover { | ||
transform: translateY(-3px); | transform: translateY(-3px); | ||
box-shadow: 0 | border-color: rgba(255,138,31,0.5); | ||
box-shadow: 0 16px 30px rgba(0,0,0,0.3); | |||
} | |||
.sc-card h3 { | |||
margin-top: 0; | |||
margin-bottom: 0.5rem; | |||
} | } | ||
.sc-card p { | .sc-card p { | ||
color: rgba(255,255,255,0. | color: rgba(255,255,255,0.76); | ||
} | } | ||
| Zeile 109: | Zeile 160: | ||
grid-template-columns: 2fr 1fr; | grid-template-columns: 2fr 1fr; | ||
gap: 1rem; | gap: 1rem; | ||
margin-bottom: 2rem; | |||
} | } | ||
.sc-panel-box { | .sc-panel-box { | ||
background: linear-gradient(180deg, | background: linear-gradient(180deg, rgba(34,15,12,0.98), rgba(18,10,9,0.98)); | ||
border: 1px solid rgba(255, | border: 1px solid rgba(255,138,31,0.15); | ||
border-radius: 18px; | border-radius: 18px; | ||
padding: 1.25rem; | padding: 1.25rem; | ||
} | |||
/* ===== LINKS ===== */ | |||
.sc-mainpage a { | |||
text-decoration: none; | |||
} | |||
.sc-mainpage a:hover { | |||
color: var(--dsa-orange); | |||
} | |||
/* ===== FOOTER NOTE ===== */ | |||
.sc-footer-note { | |||
margin-top: 2rem; | |||
padding: 1rem 1.2rem; | |||
border-left: 3px solid var(--dsa-orange); | |||
background: rgba(255,138,31,0.1); | |||
border-radius: 12px; | |||
color: rgba(255,255,255,0.82); | |||
} | } | ||
| Zeile 121: | Zeile 194: | ||
.sc-table-row { | .sc-table-row { | ||
background: linear-gradient(180deg, | background: linear-gradient(180deg, rgba(38,18,14,0.98), rgba(22,12,10,0.98)); | ||
border: 1px solid rgba(255, | border: 1px solid rgba(255,138,31,0.15); | ||
} | } | ||
.sc-table-row:hover { | .sc-table-row:hover { | ||
border-color: rgba(255,138,31,0.4); | |||
} | } | ||
| Zeile 135: | Zeile 205: | ||
.sc-farm-row { | .sc-farm-row { | ||
background: linear-gradient(180deg, | background: linear-gradient(180deg, rgba(38,18,14,0.98), rgba(22,12,10,0.98)); | ||
border: 1px solid rgba(255, | border: 1px solid rgba(255,138,31,0.15); | ||
} | } | ||
.sc-farm-header { | .sc-farm-header { | ||
background: linear-gradient(180deg, rgba( | background: linear-gradient(180deg, rgba(82,24,16,0.98), rgba(48,14,10,0.98)) !important; | ||
border: 1px solid rgba(255,138,31,0. | border: 1px solid rgba(255,138,31,0.4) !important; | ||
} | } | ||
| Zeile 150: | Zeile 218: | ||
} | } | ||
/* ===== | /* ===== MOBILE ===== */ | ||
.sc- | @media (max-width: 900px) { | ||
.sc-columns { | |||
grid-template-columns: 1fr; | |||
} | |||
} | |||
.sc-hero { | |||
min-height: 300px; | |||
} | |||
.sc- | .sc-hero-content { | ||
padding: 1.5rem; | |||
} | |||
} | } | ||
@media (max-width: 640px) { | |||
.sc-card-grid { | |||
@media (max-width: | |||
.sc- | |||
grid-template-columns: 1fr; | grid-template-columns: 1fr; | ||
} | } | ||
} | } | ||
Version vom 2. Mai 2026, 11:19 Uhr
/* ===== DSA Rot/Orange Theme ===== */
:root {
--dsa-red: #b3261e;
--dsa-red-dark: #4a0f0b;
--dsa-orange: #ff8a1f;
--dsa-gold: #ffc15a;
--dsa-text-accent: #ffb15c;
}
/* ===== Hauptseite ===== */
.sc-mainpage {
max-width: 1400px;
margin: 0 auto;
padding: 1.5rem 0 3rem 0;
}
/* ===== HERO ===== */
.sc-hero {
position: relative;
overflow: hidden;
border: 1px solid rgba(255,138,31,0.15);
border-radius: 20px;
background:
linear-gradient(135deg, rgba(36,10,8,0.96), rgba(80,24,13,0.94)),
url("/images/hero-placeholder.jpg") center/cover no-repeat;
min-height: 360px;
display: flex;
align-items: center;
margin-bottom: 2rem;
box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.sc-hero::after {
content: "";
position: absolute;
inset: 0;
background:
radial-gradient(circle at top right, rgba(255,138,31,0.25), transparent 28%),
linear-gradient(to right, rgba(10,4,3,0.85), rgba(10,4,3,0.3));
pointer-events: none;
}
.sc-hero-content {
position: relative;
z-index: 1;
max-width: 760px;
padding: 2.5rem;
}
.sc-hero-kicker {
font-size: 0.78rem;
font-weight: 700;
letter-spacing: 0.18em;
color: var(--dsa-orange);
margin-bottom: 0.8rem;
}
.sc-hero h1 {
margin: 0 0 0.75rem 0;
font-size: clamp(2rem, 4vw, 3.4rem);
line-height: 1.05;
font-weight: 800;
}
.sc-hero p {
font-size: 1.05rem;
line-height: 1.7;
color: rgba(255,255,255,0.88);
max-width: 60ch;
margin-bottom: 1.4rem;
}
/* ===== BUTTONS ===== */
.sc-hero-buttons {
display: flex;
flex-wrap: wrap;
gap: 0.75rem;
}
.sc-btn {
display: inline-block;
padding: 0.82rem 1.15rem;
border-radius: 12px;
font-weight: 700;
text-decoration: none;
}
.sc-btn-primary {
background: linear-gradient(135deg, var(--dsa-red), var(--dsa-orange));
color: #1a0a05;
}
.sc-btn-secondary {
background: rgba(255,255,255,0.06);
color: #fff;
border: 1px solid rgba(255,138,31,0.2);
}
/* ===== SECTIONS ===== */
.sc-section {
margin-bottom: 2rem;
}
.sc-section-header {
margin-bottom: 1rem;
}
.sc-section-header h2 {
margin-bottom: 0.25rem;
font-size: 1.6rem;
font-weight: 750;
}
.sc-section-header p {
margin: 0;
color: rgba(255,255,255,0.72);
}
/* ===== CARDS ===== */
.sc-card-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
gap: 1rem;
}
.sc-card {
background: linear-gradient(180deg, rgba(38,18,14,0.98), rgba(22,12,10,0.98));
border: 1px solid rgba(255,138,31,0.15);
border-radius: 18px;
padding: 1.2rem;
box-shadow: 0 10px 24px rgba(0,0,0,0.25);
transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.sc-card:hover {
transform: translateY(-3px);
border-color: rgba(255,138,31,0.5);
box-shadow: 0 16px 30px rgba(0,0,0,0.3);
}
.sc-card h3 {
margin-top: 0;
margin-bottom: 0.5rem;
}
.sc-card p {
color: rgba(255,255,255,0.76);
}
/* ===== PANELS ===== */
.sc-columns {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 1rem;
margin-bottom: 2rem;
}
.sc-panel-box {
background: linear-gradient(180deg, rgba(34,15,12,0.98), rgba(18,10,9,0.98));
border: 1px solid rgba(255,138,31,0.15);
border-radius: 18px;
padding: 1.25rem;
}
/* ===== LINKS ===== */
.sc-mainpage a {
text-decoration: none;
}
.sc-mainpage a:hover {
color: var(--dsa-orange);
}
/* ===== FOOTER NOTE ===== */
.sc-footer-note {
margin-top: 2rem;
padding: 1rem 1.2rem;
border-left: 3px solid var(--dsa-orange);
background: rgba(255,138,31,0.1);
border-radius: 12px;
color: rgba(255,255,255,0.82);
}
/* ===== TABLE ===== */
.sc-table-row {
background: linear-gradient(180deg, rgba(38,18,14,0.98), rgba(22,12,10,0.98));
border: 1px solid rgba(255,138,31,0.15);
}
.sc-table-row:hover {
border-color: rgba(255,138,31,0.4);
}
/* ===== FARM TABLE ===== */
.sc-farm-row {
background: linear-gradient(180deg, rgba(38,18,14,0.98), rgba(22,12,10,0.98));
border: 1px solid rgba(255,138,31,0.15);
}
.sc-farm-header {
background: linear-gradient(180deg, rgba(82,24,16,0.98), rgba(48,14,10,0.98)) !important;
border: 1px solid rgba(255,138,31,0.4) !important;
}
.sc-farm-header * {
color: var(--dsa-gold) !important;
}
/* ===== MOBILE ===== */
@media (max-width: 900px) {
.sc-columns {
grid-template-columns: 1fr;
}
.sc-hero {
min-height: 300px;
}
.sc-hero-content {
padding: 1.5rem;
}
}
@media (max-width: 640px) {
.sc-card-grid {
grid-template-columns: 1fr;
}
}