Dantes (обсуждение | вклад) Нет описания правки |
Dantes (обсуждение | вклад) Нет описания правки |
||
| Строка 39: | Строка 39: | ||
color: #ccc; | color: #ccc; | ||
border-radius: 0 0 12px 12px; | border-radius: 0 0 12px 12px; | ||
max-height: 0; /* Изначально скрыто */ | |||
overflow: hidden; | |||
transition: max-height 0.3s ease; | |||
} | } | ||
Версия от 05:20, 8 мая 2025
.collapsible-container {
background-color: #1e1e1e;
border: 1px solid #444;
border-radius: 12px;
margin: 10px 0;
overflow: hidden;
transition: border-color 0.3s;
}
/* Заголовок */
.collapsible-header {
padding: 10px;
background-color: #2a2a2a;
border-bottom: 1px solid #444;
color: #ddd;
font-weight: bold;
transition: background-color 0.3s;
}
.collapsible-header:hover {
background-color: #333;
}
/* Картинка и текст в заголовке */
.JobsTableHeadImg img {
border-radius: 8px;
}
.JobsTableHeadLink {
margin-left: 10px;
font-size: 1.1em;
color: #fff;
}
/* Контент */
.collapsible-content {
background-color: #1a1a1a;
padding: 10px 20px;
color: #ccc;
border-radius: 0 0 12px 12px;
max-height: 0; /* Изначально скрыто */
overflow: hidden;
transition: max-height 0.3s ease;
}
/* Список */
.JobsTableList {
padding-left: 0;
}
.JobsTableList li {
padding: 4px 0;
font-size: 0.95em;
}