MediaWiki:Common.css: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
| Zeile 1: | Zeile 1: | ||
/* | /* ===================================== | ||
/* | Dunkles, magisches Grün-Theme | ||
===================================== */ | |||
/* 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@300;400;500;600;700&display=swap'); | ||
/* Grundlayout */ | /* Grundlayout */ | ||
body { | body { | ||
background-color: # | background-color: #00241B; | ||
color: # | color: #B5FFE1; | ||
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. | line-height: 1.65; | ||
} | } | ||
/* Links */ | /* Links */ | ||
a { | a { | ||
color: # | color: #65B891; | ||
text-shadow: 0 0 6px rgba( | text-decoration: none; | ||
text-shadow: 0 0 6px rgba(147, 229, 171, 0.25); | |||
} | } | ||
a:hover { | a:hover { | ||
color: # | color: #93E5AB; | ||
text-shadow: 0 0 | text-shadow: 0 0 10px rgba(147, 229, 171, 0.6); | ||
} | } | ||
/* Überschriften */ | /* Überschriften */ | ||
h1, h2, h3, h4, h5, h6 { | h1, h2, h3, h4, h5, h6 { | ||
color: # | color: #93E5AB; | ||
text-shadow: 0 0 | font-weight: 600; | ||
letter-spacing: 0.03em; | |||
text-shadow: 0 0 8px rgba(147, 229, 171, 0.35); | |||
} | } | ||
/* Inhaltsbereich */ | /* Inhaltsbereich */ | ||
.mw-body { | .mw-body { | ||
background-color: # | background-color: #0b3a2f; | ||
border-radius: | border-radius: 12px; | ||
padding: 1.5em; | padding: 1.5em; | ||
box-shadow: 0 0 | box-shadow: | ||
0 0 0 1px #4E878C, | |||
0 0 25px rgba(147, 229, 171, 0.08); | |||
} | } | ||
| Zeile 49: | Zeile 48: | ||
.mw-header, | .mw-header, | ||
.vector-header { | .vector-header { | ||
background-color: # | background-color: #00241B; | ||
border-bottom: 1px solid # | border-bottom: 1px solid #4E878C; | ||
box-shadow: 0 0 | box-shadow: 0 0 18px rgba(147, 229, 171, 0.15); | ||
} | } | ||
/* Footer */ | /* Footer */ | ||
.mw-footer { | .mw-footer { | ||
background-color: # | background-color: #00241B; | ||
color: # | color: #65B891; | ||
border-top: 1px solid # | border-top: 1px solid #4E878C; | ||
box-shadow: inset 0 | box-shadow: inset 0 6px 12px rgba(0, 0, 0, 0.6); | ||
} | } | ||
.mw-footer a { | .mw-footer a { | ||
color: # | color: #93E5AB; | ||
} | } | ||
/* Tabellen */ | /* Tabellen */ | ||
table { | table { | ||
background-color: # | background-color: #083028; | ||
border: 1px solid # | border: 1px solid #4E878C; | ||
border-radius: 6px; | |||
overflow: hidden; | |||
} | } | ||
th { | th { | ||
background-color: # | background-color: #4E878C; | ||
color: # | color: #00241B; | ||
font-weight: 600; | |||
} | |||
td { | |||
border-top: 1px solid #00241B; | |||
} | } | ||
/* Code & Pre */ | /* Code & Pre */ | ||
pre, code { | pre, | ||
background-color: # | code { | ||
border: 1px solid # | background-color: #06261f; | ||
color: # | 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 ( | /* Scrollbar (WebKit) */ | ||
::-webkit-scrollbar { | ::-webkit-scrollbar { | ||
width: 10px; | width: 10px; | ||
| Zeile 91: | Zeile 118: | ||
::-webkit-scrollbar-track { | ::-webkit-scrollbar-track { | ||
background: # | background: #00241B; | ||
} | } | ||
::-webkit-scrollbar-thumb { | ::-webkit-scrollbar-thumb { | ||
background: # | background: #4E878C; | ||
box-shadow: 0 0 8px rgba( | box-shadow: 0 0 8px rgba(147, 229, 171, 0.6); | ||
} | } | ||
/* Textauswahl */ | /* Textauswahl */ | ||
::selection { | ::selection { | ||
background: # | background: #93E5AB; | ||
color: # | color: #00241B; | ||
} | } | ||
Version vom 17. Januar 2026, 17:43 Uhr
/* =====================================
Dunkles, magisches Grün-Theme
===================================== */
/* Schrift */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
/* Grundlayout */
body {
background-color: #00241B;
color: #B5FFE1;
font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
font-size: 16px;
line-height: 1.65;
}
/* Links */
a {
color: #65B891;
text-decoration: none;
text-shadow: 0 0 6px rgba(147, 229, 171, 0.25);
}
a:hover {
color: #93E5AB;
text-shadow: 0 0 10px rgba(147, 229, 171, 0.6);
}
/* Überschriften */
h1, h2, h3, h4, h5, h6 {
color: #93E5AB;
font-weight: 600;
letter-spacing: 0.03em;
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;
}