|
|
| Zeile 1: |
Zeile 1: |
| /* =====================================
| |
| 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);
| |
| }
| |