MediaWiki:Common.css: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
| Zeile 1: | Zeile 1: | ||
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */ | /* Das folgende CSS wird für alle Benutzeroberflächen geladen. */ | ||
/* Moderne Schriftart laden */ | |||
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); | |||
/* =============================== | /* =============================== | ||
Dunkles magisches Fantasy-Theme | Dunkles magisches Fantasy-Theme | ||
| Zeile 8: | Zeile 10: | ||
background-color: #0f1612; | background-color: #0f1612; | ||
color: #e8f5ee; | color: #e8f5ee; | ||
font-family: | font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif; | ||
font-size: 16px; | |||
line-height: 1.6; | |||
} | |||
h1, h2, h3, h4, h5, h6 { | |||
font-family: 'Inter', sans-serif; | |||
font-weight: 600; | |||
letter-spacing: 0.03em; | |||
} | } | ||
Version vom 17. Januar 2026, 17:24 Uhr
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
/* Moderne Schriftart laden */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
/* ===============================
Dunkles magisches Fantasy-Theme
=============================== */
/* Grundlayout */
body {
background-color: #0f1612;
color: #e8f5ee;
font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
font-size: 16px;
line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Inter', sans-serif;
font-weight: 600;
letter-spacing: 0.03em;
}
/* Links */
a {
color: #3cff8f;
text-shadow: 0 0 6px rgba(60, 255, 143, 0.3);
}
a:hover {
color: #d4af37;
text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}
/* Überschriften */
h1, h2, h3, h4, h5, h6 {
color: #3cff8f;
text-shadow: 0 0 10px rgba(60, 255, 143, 0.4);
}
/* Inhaltsbereich */
.mw-body {
background-color: #16211a;
border-radius: 10px;
padding: 1.5em;
box-shadow: 0 0 20px rgba(60, 255, 143, 0.08);
}
/* Header (Vector Desktop) */
.mw-header,
.vector-header {
background-color: #0b120e;
border-bottom: 1px solid #1e8f55;
box-shadow: 0 0 15px rgba(60, 255, 143, 0.15);
}
/* Footer */
.mw-footer {
background-color: #0b120e;
color: #a7d9c1;
border-top: 1px solid #1e8f55;
box-shadow: inset 0 5px 10px rgba(0,0,0,0.6);
}
.mw-footer a {
color: #3cff8f;
}
/* Tabellen */
table {
background-color: #132019;
border: 1px solid #1e8f55;
}
th {
background-color: #1e8f55;
color: #ffffff;
text-shadow: 0 0 5px rgba(0,0,0,0.6);
}
/* Code & Pre */
pre, code {
background-color: #101a14;
border: 1px solid #1e8f55;
color: #9effc8;
}
/* Scrollbar (Webkit) */
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: #0b120e;
}
::-webkit-scrollbar-thumb {
background: #1e8f55;
box-shadow: 0 0 8px rgba(60,255,143,0.6);
}
/* Textauswahl */
::selection {
background: #3cff8f;
color: #0b120e;
}