Vorlage:SeitenInhalt/styles.css

Aus Lost Dreams Of Tomorrow Wiki
Version vom 12. Januar 2026, 04:39 Uhr von NeroReaver (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „=========================== MMO Idle Game Wiki Styles Dunkles Theme mit hoher Lesbarkeit ===========================: Container für die gesamte Vorlage: .seiteninhalt-container { display: flex; gap: 25px; margin: 20px 0; color: #e8e8e8; } Hauptinhalt linksbündig: .seiteninhalt-main { flex: 1; min-width: 0; } Abschnitte im Hauptinhalt: .seiteninhalt-section { margin-bottom: 30px; } /* Überschr…“)
(Unterschied) ← Nächstältere Version | Aktuelle Version (Unterschied) | Nächstjüngere Version → (Unterschied)
/* ===========================
   MMO Idle Game Wiki Styles
   Dunkles Theme mit hoher Lesbarkeit
   =========================== */

/* Container für die gesamte Vorlage */
.seiteninhalt-container {
    display: flex;
    gap: 25px;
    margin: 20px 0;
    color: #e8e8e8;
}

/* Hauptinhalt linksbündig */
.seiteninhalt-main {
    flex: 1;
    min-width: 0;
}

/* Abschnitte im Hauptinhalt */
.seiteninhalt-section {
    margin-bottom: 30px;
}

/* Überschriften */
.seiteninhalt-heading {
    font-size: 1.5em;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #4a4a4a;
}

/* Textbereiche */
.seiteninhalt-text {
    color: #e8e8e8;
    line-height: 1.7;
    font-size: 1.05em;
}

.seiteninhalt-text p {
    margin-bottom: 12px;
}

/* Sidebar rechts */
.seiteninhalt-sidebar {
    width: 320px;
    flex-shrink: 0;
}

/* ===========================
   Infobox Styling
   =========================== */

.seiteninhalt-infobox {
    background-color: #1a1a1a;
    border: 2px solid #3a3a3a;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.infobox-header {
    background: linear-gradient(135deg, #2d2d2d 0%, #1f1f1f 100%);
    color: #ffffff;
    font-size: 1.3em;
    font-weight: bold;
    text-align: center;
    padding: 15px;
    border-bottom: 2px solid #4a4a4a;
}

.infobox-image {
    text-align: center;
    padding: 15px;
    background-color: #0d0d0d;
}

.infobox-image img {
    max-width: 100%;
    border-radius: 6px;
    border: 2px solid #3a3a3a;
}

.infobox-table {
    width: 100%;
    border-collapse: collapse;
}

.infobox-table tr {
    border-bottom: 1px solid #2a2a2a;
}

.infobox-table tr:last-child {
    border-bottom: none;
}

.infobox-table th {
    background-color: #242424;
    color: #c0c0c0;
    font-weight: 600;
    text-align: left;
    padding: 10px 12px;
    width: 40%;
    font-size: 0.95em;
}

.infobox-table td {
    background-color: #1a1a1a;
    color: #e8e8e8;
    padding: 10px 12px;
    font-size: 0.95em;
}

/* ===========================
   Table of Contents Styling
   =========================== */

.seiteninhalt-toc {
    background-color: #1a1a1a;
    border: 2px solid #3a3a3a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.toc-header {
    background: linear-gradient(135deg, #2d2d2d 0%, #1f1f1f 100%);
    color: #ffffff;
    font-size: 1.1em;
    font-weight: bold;
    padding: 12px 15px;
    border-bottom: 2px solid #4a4a4a;
}

.toc-list {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.toc-list li {
    margin: 0;
    padding: 0;
}

.toc-list a {
    display: block;
    padding: 10px 15px;
    color: #c8c8c8;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.toc-list a:hover {
    background-color: #242424;
    color: #ffffff;
    border-left-color: #5a9fd4;
    padding-left: 20px;
}

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 900px) {
    .seiteninhalt-container {
        flex-direction: column-reverse;
    }
    
    .seiteninhalt-sidebar {
        width: 100%;
    }
}

/* ===========================
   Links und allgemeine Elemente
   =========================== */

.seiteninhalt-text a {
    color: #6ab0de;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.seiteninhalt-text a:hover {
    color: #8fc7ed;
    border-bottom-color: #8fc7ed;
}

/* Listen im Textbereich */
.seiteninhalt-text ul,
.seiteninhalt-text ol {
    margin-left: 20px;
    margin-bottom: 12px;
}

.seiteninhalt-text li {
    margin-bottom: 6px;
    color: #e8e8e8;
}

/* Code-Blöcke falls benötigt */
.seiteninhalt-text code {
    background-color: #0d0d0d;
    color: #f0f0f0;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    border: 1px solid #3a3a3a;
}