MediaWiki:Common.css: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
| Zeile 1: | Zeile 1: | ||
/* ===================================== | /* ===================================== | ||
Dunkles, | Dunkles, kontrastreiches Grün-Theme | ||
===================================== */ | ===================================== */ | ||
/* Schrift */ | /* Moderne, sehr gut lesbare Schrift */ | ||
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@ | @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: # | 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. | 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 | text-shadow: 0 0 4px rgba(147, 229, 171, 0.25); | ||
} | } | ||
a:hover { | a:hover { | ||
color: #93E5AB; | color: #93E5AB; | ||
text-shadow: 0 0 | 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. | 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); | ||
} | } | ||
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);
}