From 4c9630a2990999d081de5ea8e0bdbe433fe283f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=B0=D1=80=D0=B8=D0=BC=D0=BE=D0=B2=20=D0=90=D0=B4?= =?UTF-8?q?=D0=B5=D0=BB=D1=8C?= Date: Tue, 27 Aug 2024 19:30:49 +0000 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20assets/css/chat.css?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- assets/css/chat.css | 40 +++++++++++++++++++++++++++++++++++++++- 1 file changed, 39 insertions(+), 1 deletion(-) diff --git a/assets/css/chat.css b/assets/css/chat.css index abafc9a..6d7abd6 100644 --- a/assets/css/chat.css +++ b/assets/css/chat.css @@ -199,4 +199,42 @@ body { } .chat-send-button:hover { background-color: #007bb5; -} \ No newline at end of file +} + +.room-name { + position: absolute; + left: 40%; + font-size: 24px; +} + +.edit-chat { + border: none; + position: absolute; + left: 70%; + border-radius: 10px; + cursor: pointer; + width: 150px; + background-color: #f7f7f7; + height: 25px; + transition: background-color 0.3s ease; +} + +.edit-chat:hover { + background-color: #ffcc00; +} + +.exit-chat { + border: none; + position: absolute; + left: 90%; + border-radius: 10px; + cursor: pointer; + width: 150px; + background-color: #f7f7f7; + height: 25px; + transition: background-color 0.3s ease; +} + +.exit-chat:hover { + background-color: #dc3545; +}