From c0ff8c2b2e9f83e2d68e02b748f15973e17a118c Mon Sep 17 00:00:00 2001 From: VS-Code <-> Date: Fri, 6 Feb 2026 15:58:53 +0100 Subject: [PATCH] - --- index.html | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/index.html b/index.html index 65e507f..11c1308 100755 --- a/index.html +++ b/index.html @@ -109,22 +109,24 @@ background-color: #111; border-left: 3px solid #1793d1; padding: 20px; + font-family: 'JetBrains Mono', monospace; + text-align: left; border-radius: 5px; + margin-bottom: 50px; /* Abstand nach unten zu den Games */ box-shadow: 0 10px 30px rgba(0,0,0,0.5); - font-family: 'Courier New', monospace; - } - - /* Der "Inhalt" (ASCII-Grafik) */ - .terminal pre { - margin: 0 0 20px 0; /* Unten Abstand zum Prompt, oben bündig */ - line-height: 1.2; /* Hält die ASCII-Art kompakt */ - white-space: pre; /* Verhindert Zeilenumbrüche durch den Browser */ } /* Spezifische Farben für das Terminal-Banner */ .t-blue { color: #3498db; } /* Das Blau von ~]$ */ .t-yellow { color: #f1c40f; } /* Ein kräftiges Gelb für Symbole */ .t-white { color: #ffffff; } /* Reinweiß für den Rest */ + .terminal pre { + margin: 0 0 20px 0; + font-family: 'JetBrains', monospace; + line-height: 1.2; + white-space: pre; /* Behält die Abstände der ASCII-Art bei */ + } + .prompt { color: #2ecc71; } .path { color: #3498db; } .command { color: #e0e0e0; }