From 81b685a33114917a372e0dc2f355c2e491bea418 Mon Sep 17 00:00:00 2001 From: Cay Date: Thu, 12 Mar 2026 09:38:55 +0000 Subject: [PATCH] =?UTF-8?q?=C3=A4nerung=20der=20chatbuttons?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/css/launcher.css | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/public/css/launcher.css b/public/css/launcher.css index 4b8e474..fc50a7c 100644 --- a/public/css/launcher.css +++ b/public/css/launcher.css @@ -146,3 +146,35 @@ overflow-y: auto; } + +.chat-channels { + display: flex; + gap: 4px; + padding: 4px; +} + +.chat-channels button { + background: linear-gradient(#6b4a25, #3a2512); + + border: 1px solid #caa46a; + + color: #f3e6c5; + + font-family: serif; + + font-size: 13px; + + padding: 3px 8px; + + cursor: pointer; + + transition: all 0.15s ease; +} + +.chat-channels button:hover { + background: linear-gradient(#8a6235, #4a3018); + + border-color: #ffd27a; + + box-shadow: 0 0 6px rgba(255, 210, 120, 0.6); +}