iu9-ca-web-chat/assets/css/list-rooms.css

167 lines
3.1 KiB
CSS
Raw Permalink Normal View History

2024-09-12 13:52:18 +00:00
/* Общие стили */
body {
font-family: 'Roboto', sans-serif;
background-color: #f7f9fc;
color: #333;
margin: 0;
padding: 0;
box-sizing: border-box;
2024-08-05 11:42:32 +00:00
}
2024-09-12 12:46:17 +00:00
/* Панель навигации */
2024-09-12 13:52:18 +00:00
.panel {
background-color: #007bff;
padding: 10px;
color: white;
2024-08-05 11:42:32 +00:00
display: flex;
2024-09-12 11:43:53 +00:00
align-items: center;
2024-09-12 13:52:18 +00:00
}
.panel-thing {
margin-right: 20px;
text-decoration: none;
2024-09-12 11:43:53 +00:00
color: white;
2024-08-05 11:42:32 +00:00
}
2024-09-12 13:52:18 +00:00
.panel-header-txt {
font-size: 18px;
font-weight: bold;
2024-08-05 11:42:32 +00:00
}
2024-09-12 13:52:18 +00:00
/* Стили динамических блоков */
.dynamic-block-list {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
2024-08-05 11:42:32 +00:00
}
2024-09-12 13:52:18 +00:00
.dynamic-block-list-el-container {
width: 100%;
max-width: 600px;
margin-top: 20px;
}
/* Кнопка добавления */
.button-add {
width: 50px;
height: 50px;
cursor: pointer;
transition: transform 0.2s;
}
.button-add:hover {
transform: scale(1.1);
2024-08-05 11:42:32 +00:00
}
2024-09-12 13:52:18 +00:00
/* Всплывающие окна */
2024-09-12 11:43:53 +00:00
.popup-window {
background-color: white;
border-radius: 8px;
2024-09-12 13:52:18 +00:00
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
padding: 20px;
max-width: 500px;
margin: 0 auto;
2024-08-05 11:42:32 +00:00
}
2024-09-12 13:52:18 +00:00
.popup-window-msg {
font-size: 20px;
2024-09-12 11:43:53 +00:00
margin-bottom: 15px;
color: #333;
}
2024-09-12 11:43:53 +00:00
2024-09-12 13:52:18 +00:00
.popup-window-btn-yes, .popup-window-btn-no {
padding: 10px 20px;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
2024-08-11 12:17:53 +00:00
}
2024-09-12 11:43:53 +00:00
2024-09-12 13:52:18 +00:00
.popup-window-btn-yes {
background-color: #28a745;
color: white;
margin-right: 10px;
2024-09-12 11:43:53 +00:00
}
2024-09-12 13:52:18 +00:00
.popup-window-btn-no {
background-color: #dc3545;
color: white;
}
2024-09-12 11:43:53 +00:00
2024-09-12 13:52:18 +00:00
/* Таблица ввода */
table.id-str-input-table {
width: 100%;
2024-09-12 13:52:18 +00:00
border-collapse: collapse;
margin-bottom: 20px;
2024-09-12 11:43:53 +00:00
}
2024-09-12 13:52:18 +00:00
.id-str-input-td1, .id-str-input-td2 {
2024-09-12 11:43:53 +00:00
border: none;
2024-09-12 13:52:18 +00:00
padding: 10px;
2024-09-12 11:43:53 +00:00
}
2024-09-12 13:52:18 +00:00
.id-str-input-td1 {
text-align: left;
padding-right: 10px;
font-weight: bold;
color: #555;
white-space: nowrap;
2024-09-12 11:43:53 +00:00
}
2024-09-12 13:52:18 +00:00
.id-str-input-td2 {
width: 100%;
2024-09-12 11:43:53 +00:00
}
2024-09-12 13:52:18 +00:00
.one-line-input {
width: 100%;
padding: 8px 12px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 14px;
2024-09-12 11:43:53 +00:00
}
2024-09-12 13:52:18 +00:00
/* Стили комнат */
.CL-my-chat-box {
2024-09-12 12:46:17 +00:00
display: flex;
2024-09-12 13:52:18 +00:00
flex-direction: row;
position: relative;
2024-09-12 12:46:17 +00:00
padding: 10px;
2024-09-12 13:52:18 +00:00
background-color: #003366; /* Синий фон */
2024-09-12 12:46:17 +00:00
border-radius: 8px;
2024-09-12 13:52:18 +00:00
margin-bottom: 10px;
align-items: center;
min-height: 40px;
width: 100%;
2024-09-12 12:46:17 +00:00
}
2024-09-12 13:52:18 +00:00
/* Текст внутри блока комнаты */
.CL-my-chat-box-nickname, .CL-my-chat-box-name, .CL-my-chat-box-my-role {
margin-left: 8px;
color: rgb(0, 0, 0); /* Белый цвет текста */
2024-09-12 12:46:17 +00:00
}
2024-09-12 13:52:18 +00:00
/* Крестик в правом верхнем углу */
.CL-my-chat-box-leave-btn {
2024-09-12 12:46:17 +00:00
position: absolute;
2024-09-12 13:52:18 +00:00
top: 8px;
right: 8px;
width: 16px;
height: 16px;
background: url('/assets/img/close.svg') no-repeat center;
background-size: cover;
2024-09-12 12:46:17 +00:00
cursor: pointer;
2024-09-12 13:52:18 +00:00
border: none;
transition: transform 0.2s;
2024-09-12 11:43:53 +00:00
}
2024-09-12 12:46:17 +00:00
2024-09-12 13:52:18 +00:00
.CL-my-chat-box-leave-btn:hover {
transform: scale(1.2);
2024-09-12 12:46:17 +00:00
}
2024-09-12 13:52:18 +00:00
/* Дизайн списка комнат остается таким же */
#CL-bacbe {
margin-top: 6px;
margin-bottom: 4px;
2024-09-12 12:46:17 +00:00
}