Обновить assets/css/chat.css

This commit is contained in:
Каримов Адель 2024-08-27 19:30:49 +00:00
parent a921e4ed8c
commit 4c9630a299

View File

@ -200,3 +200,41 @@ body {
.chat-send-button:hover {
background-color: #007bb5;
}
.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;
}