From 478e0747142dd9e3a8560ec52e964eef55c4e590 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: Fri, 23 Aug 2024 10:59:06 +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 | 38 +++++++++++++++++++++++++++++++++++++- 1 file changed, 37 insertions(+), 1 deletion(-) diff --git a/assets/css/chat.css b/assets/css/chat.css index abafc9a..410e6b2 100644 --- a/assets/css/chat.css +++ b/assets/css/chat.css @@ -199,4 +199,40 @@ body { } .chat-send-button:hover { background-color: #007bb5; -} \ No newline at end of file +} + +.back-to-rooms { + position: absolute; + left: 10px; + color: white; + text-decoration: none; + font-size: 18px; + font-weight: bold; +} + +.back-to-rooms:hover { + text-decoration: underline; + color: #f7f7f7; +} + +.room-name { + position: absolute; + left: 50%; + font-size: 24px; +} + +.members { + border: none; + position: absolute; + left: 80%; + border-radius: 10px; + cursor: pointer; + width: 150px; + background-color: #f7f7f7; + height: 25px; + transition: background-color 0.3s ease; +} + +.members:hover { + background-color: #218838; +}