/* bix-core – minimale stabile Basis */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #f5f7fb;
font-family: system-ui, -apple-system, ‚Segoe UI‘, Roboto, ‚Helvetica Neue‘, sans-serif;
line-height: 1.5;
color: #1e293b;
padding: 2rem 1rem;
display: flex;
flex-direction: column;
align-items: center;
}
/* Hauptcontainer – simuliert blickindex.de Rahmen */
.bix-container {
max-width: 1000px;
width: 100%;
background: white;
border-radius: 28px;
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
padding: 2rem 2.2rem;
}
/* alle bix- Klassen */
.bix-hero {
background: linear-gradient(145deg, #f1f5fe 0%, #e9edf8 100%);
border-radius: 32px;
padding: 1.8rem 2rem;
margin-bottom: 2.2rem;
border: 1px solid rgba(255, 255, 255, 0.7);
box-shadow: 0 4px 10px rgba(0, 20, 40, 0.02);
}
.bix-hero h1 {
font-size: 2.4rem;
font-weight: 600;
letter-spacing: -0.02em;
color: #0b1e33;
display: flex;
align-items: center;
gap: 0.5rem;
}
.bix-hero h1 small {
font-size: 1rem;
font-weight: 400;
color: #3b5b7d;
background: rgba(255, 255, 255, 0.6);
padding: 0.1rem 1rem;
border-radius: 40px;
margin-left: 0.5rem;
}
.bix-hero p {
margin-top: 0.6rem;
color: #1f3a57;
font-size: 1.1rem;
max-width: 70%;
}
/* Sektionen einheitlich */
.bix-sec-syn,
.bix-sec-kw,
.bix-faq,
.bix-sources,
.bix-related {
margin-top: 2.5rem;
padding-top: 0.8rem;
border-top: 1px solid #e2e8f0;
}
.bix-sec-syn:first-of-type {
margin-top: 0.2rem;
border-top: none;
}
.bix-sec-syn h2,
.bix-sec-kw h2,
.bix-faq h2,
.bix-sources h2,
.bix-related h2 {
font-size: 1.5rem;
font-weight: 550;
color: #0f2a44;
margin-bottom: 1.2rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.bix-sec-syn h2::before {
content: „🔀“;
font-size: 1.5rem;
}
.bix-sec-kw h2::before {
content: „🧩“;
font-size: 1.5rem;
}
.bix-faq h2::before {
content: „❓“;
font-size: 1.4rem;
}
.bix-sources h2::before {
content: „📚“;
font-size: 1.4rem;
}
.bix-related h2::before {
content: „🔗“;
font-size: 1.4rem;
}
/* Synonyme – kompakte Liste */
.bix-syn-list {
display: flex;
flex-wrap: wrap;
gap: 0.6rem 0.9rem;
list-style: none;
background: #f8fafd;
padding: 1rem 1.4rem;
border-radius: 48px;
}
.bix-syn-list li {
background: white;
padding: 0.2rem 1.1rem;
border-radius: 40px;
border: 1px solid #dce3ec;
font-size: 1rem;
box-shadow: 0 1px 3px rgba(0,0,0,0.02);
color: #1e3a5f;
}
/* Bedeutung (innerhalb bix-sec-syn) */
.bix-meaning {
background: #fafcff;
padding: 1.2rem 1.6rem;
border-radius: 28px;
margin: 1.2rem 0 0.2rem 0;
border-left: 6px solid #b6cbe0;
}
.bix-meaning h3 {
font-weight: 500;
font-size: 1.1rem;
color: #1d3b5a;
margin-bottom: 0.3rem;
}
.bix-meaning p {
color: #254663;
font-size: 1rem;
}
/* Kreuzwort-Tabelle – bix-kw-row (mindestens 6 Zeilen) */
.bix-kw-table {
width: 100%;
border-collapse: collapse;
background: #f9fbfe;
border-radius: 24px;
overflow: hidden;
box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}
.bix-kw-table th {
background: #e5ecf5;
padding: 0.8rem 1rem;
text-align: left;
font-weight: 550;
color: #10304e;
}
.bix-kw-table td {
padding: 0.7rem 1rem;
border-bottom: 1px solid #e0e8f2;
}
.bix-kw-row {
transition: background 0.1s;
}
.bix-kw-row:nth-child(even) {
background: #f4f8fe;
}
.bix-kw-row:hover {
background: #e9f0fa;
}
/* FAQ */
.bix-faq-item {
background: #f9fcff;
border-radius: 20px;
padding: 0.9rem 1.4rem;
margin-bottom: 0.7rem;
border: 1px solid #e6edf6;
}
.bix-faq-item strong {
display: block;
font-weight: 600;
color: #0f2a44;
margin-bottom: 0.2rem;
}
.bix-faq-item p {
color: #1f3f61;
}
/* Quellen */
.bix-sources ul {
list-style: none;
padding-left: 0.2rem;
}
.bix-sources li {
padding: 0.3rem 0;
border-bottom: 1px dashed #dee6f0;
display: flex;
align-items: baseline;
gap: 0.5rem;
}
.bix-sources li::before {
content: „•“;
color: #3f6b9b;
font-weight: bold;
}
.bix-sources a {
color: #1e4a76;
text-decoration: none;
border-bottom: 1px dotted #b6cde0;
}
.bix-sources a:hover {
border-bottom: 1px solid #0f2f4e;
}
/* Verwandt – bix-related mit href=“/synonym/“ */
.bix-related-list {
display: flex;
flex-wrap: wrap;
gap: 0.8rem 1.2rem;
list-style: none;
padding: 0.6rem 0;
}
.bix-related-list li a {
background: #f0f4fb;
padding: 0.3rem 1.2rem;
border-radius: 40px;
color: #1b3d62;
text-decoration: none;
border: 1px solid #d5e0ee;
transition: 0.1s ease;
display: inline-block;
}
.bix-related-list li a:hover {
background: #e1ebf7;
border-color: #a7bedb;
transform: scale(1.02);
}
/* kleine Helfer */
.bix-subnote {
font-size: 0.9rem;
color: #4d6a88;
margin-top: 0.3rem;
}
hr {
border: none;
border-top: 1px solid #e2e8f0;
margin: 0.8rem 0;
}
/* responsive */
@media (max-width: 640px) {
.bix-container {
padding: 1.2rem;
}
.bix-hero h1 {
font-size: 1.8rem;
flex-wrap: wrap;
}
.bix-hero p {
max-width: 100%;
}
}
geändert Wortlexikon · blickindex.de
Bedeutung, Synonyme, Kreuzworträtsel-Hilfe und Herkunft – vollständig auf blickindex.de