MediaWiki:Common.css: Unterschied zwischen den Versionen

Aus Hytalebase
Zur Navigation springen Zur Suche springen
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 1: Zeile 1:
/* =====================================
/* =====================================
   Dunkles, magisches Grün-Theme
   Dunkles, kontrastreiches Grün-Theme
   ===================================== */
   ===================================== */


/* Schrift */
/* Moderne, sehr gut lesbare Schrift */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');


/* Grundlayout */
/* Grundlayout */
body {
body {
     background-color: #00241B;
     background-color: #00241B;
     color: #B5FFE1;
     color: #ffffff;
     font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
     font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
     font-size: 16px;
     font-size: 16px;
     line-height: 1.65;
     line-height: 1.7;
}
 
/* Absätze */
p, li, td, dd {
    color: #ffffff;
}
}


Zeile 19: Zeile 24:
     color: #65B891;
     color: #65B891;
     text-decoration: none;
     text-decoration: none;
     text-shadow: 0 0 6px rgba(147, 229, 171, 0.25);
     text-shadow: 0 0 4px rgba(147, 229, 171, 0.25);
}
}


a:hover {
a:hover {
     color: #93E5AB;
     color: #93E5AB;
     text-shadow: 0 0 10px rgba(147, 229, 171, 0.6);
     text-shadow: 0 0 8px rgba(147, 229, 171, 0.6);
}
}


Zeile 31: Zeile 36:
     color: #93E5AB;
     color: #93E5AB;
     font-weight: 600;
     font-weight: 600;
     letter-spacing: 0.03em;
     letter-spacing: 0.04em;
     text-shadow: 0 0 8px rgba(147, 229, 171, 0.35);
     text-shadow: 0 0 8px rgba(147, 229, 171, 0.35);
}
/* Inhaltsbereich */
.mw-body {
    background-color: #0b3a2f;
    border-radius: 12px;
    padding: 1.5em;
    box-shadow:
        0 0 0 1px #4E878C,
        0 0 25px rgba(147, 229, 171, 0.08);
}
/* Header (Vector Desktop) */
.mw-header,
.vector-header {
    background-color: #00241B;
    border-bottom: 1px solid #4E878C;
    box-shadow: 0 0 18px rgba(147, 229, 171, 0.15);
}
/* Footer */
.mw-footer {
    background-color: #00241B;
    color: #65B891;
    border-top: 1px solid #4E878C;
    box-shadow: inset 0 6px 12px rgba(0, 0, 0, 0.6);
}
.mw-footer a {
    color: #93E5AB;
}
/* Tabellen */
table {
    background-color: #083028;
    border: 1px solid #4E878C;
    border-radius: 6px;
    overflow: hidden;
}
th {
    background-color: #4E878C;
    color: #00241B;
    font-weight: 600;
}
td {
    border-top: 1px solid #00241B;
}
/* Code & Pre */
pre,
code {
    background-color: #06261f;
    color: #93E5AB;
    border: 1px solid #4E878C;
    border-radius: 6px;
}
/* Buttons & Inputs */
button,
input,
select,
textarea {
    background-color: #00241B;
    color: #B5FFE1;
    border: 1px solid #65B891;
    border-radius: 6px;
}
button:hover,
input:focus,
select:focus,
textarea:focus {
    border-color: #93E5AB;
    box-shadow: 0 0 10px rgba(147, 229, 171, 0.4);
    outline: none;
}
/* Scrollbar (WebKit) */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #00241B;
}
::-webkit-scrollbar-thumb {
    background: #4E878C;
    box-shadow: 0 0 8px rgba(147, 229, 171, 0.6);
}
/* Textauswahl */
::selection {
    background: #93E5AB;
    color: #00241B;
}
}

Version vom 17. Januar 2026, 17:43 Uhr

/* =====================================
   Dunkles, kontrastreiches Grün-Theme
   ===================================== */

/* Moderne, sehr gut lesbare Schrift */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Grundlayout */
body {
    background-color: #00241B;
    color: #ffffff;
    font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

/* Absätze */
p, li, td, dd {
    color: #ffffff;
}

/* Links */
a {
    color: #65B891;
    text-decoration: none;
    text-shadow: 0 0 4px rgba(147, 229, 171, 0.25);
}

a:hover {
    color: #93E5AB;
    text-shadow: 0 0 8px rgba(147, 229, 171, 0.6);
}

/* Überschriften */
h1, h2, h3, h4, h5, h6 {
    color: #93E5AB;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-shadow: 0 0 8px rgba(147, 229, 171, 0.35);
}