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