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; +}