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

This commit is contained in:
Каримов Адель 2024-08-23 10:59:06 +00:00
parent eebfc72518
commit 478e074714

View File

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