Files
BSN-Chatsystem/vorbestell-box.css
T
Hermes Agent 2a06bcaee0 fix: <style>-Blöcke aus allen 24 Artikeln entfernt + Skill korrigiert
- artikel_*.html: 24 Dateien von <style>-Blöcken befreit (body, max-width zerstören Joomla)
- journalistic-article-writing SKILL.md: falsche 'AUSNAHME 09.07.' entfernt
- Ursache: Skill-Kommentar erlaubte Sub-Agenten <style> 'für Vorschau' — kein Gatekeeper existiert
2026-07-09 23:30:55 +02:00

148 lines
2.7 KiB
CSS

/*
* BSN Vorbestell-Box — Split-Layout, Akzentfarbe #20228b
* =====================================================
* Einfügen in: Astroid → Custom Code → Custom CSS
* (oder media/templates/site/.../css/custom.css)
*/
:root {
--vb-accent: #20228b;
--vb-accent-dark: #1a1c6e;
--vb-accent-hover: #2b2eb0;
--vb-tint: #ecedf9;
--vb-tint-border: #d8daf1;
--vb-muted: #4b4da5;
--vb-text: #444;
}
.vorbestell-box {
display: flex;
background: #fff;
border: 1px solid var(--vb-tint-border);
border-radius: 14px;
overflow: hidden;
margin: 1.5rem 0;
font-size: 0.95rem;
line-height: 1.5;
}
.vorbestell-box__info {
flex: 1;
min-width: 0;
padding: 20px 22px;
}
.vorbestell-box__badge {
display: inline-block;
background: var(--vb-tint);
color: var(--vb-accent);
font-size: 0.75rem;
font-weight: 600;
padding: 3px 12px;
border-radius: 999px;
}
.vorbestell-box__title {
font-size: 1.05rem;
font-weight: 600;
color: var(--vb-accent-dark);
margin: 10px 0 6px;
}
.vorbestell-box__meta {
display: flex;
flex-direction: column;
gap: 4px;
margin: 0;
padding: 0;
color: var(--vb-text);
font-size: 0.875rem;
}
.vorbestell-box__meta ul {
margin: 0;
padding: 0;
}
.vorbestell-box__meta li {
list-style: none;
display: flex;
align-items: center;
gap: 7px;
}
.vorbestell-box__meta i {
color: var(--vb-accent);
font-size: 1rem;
width: 18px;
text-align: center;
}
.vorbestell-box__panel {
width: 210px;
flex-shrink: 0;
background: var(--vb-tint);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 10px;
padding: 20px 18px;
}
.vorbestell-box__price {
font-size: 1.7rem;
font-weight: 700;
color: var(--vb-accent-dark);
}
.vorbestell-box__btn {
display: block;
width: 100%;
text-align: center;
background: var(--vb-accent);
color: #fff !important;
text-decoration: none !important;
font-size: 0.875rem;
font-weight: 600;
padding: 10px 0;
border-radius: 9px;
transition: background 0.15s ease;
}
.vorbestell-box__btn:hover,
.vorbestell-box__btn:focus-visible {
background: var(--vb-accent-hover);
color: #fff;
}
.vorbestell-box__disclosure {
font-size: 0.7rem;
color: var(--vb-muted);
}
/* Mobile: Panel rutscht unter die Infos */
@media (max-width: 575.98px) {
.vorbestell-box {
flex-direction: column;
}
.vorbestell-box__panel {
width: 100%;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
padding: 14px 18px;
}
.vorbestell-box__price {
font-size: 1.4rem;
}
.vorbestell-box__btn {
width: auto;
padding: 10px 22px;
}
.vorbestell-box__disclosure {
width: 100%;
text-align: center;
}
}