This commit is contained in:
2026-02-02 16:16:14 +05:00
parent cd827b0e9a
commit 0b54ca8404
11 changed files with 1185 additions and 1020 deletions

View File

@@ -2352,3 +2352,50 @@ small {
.nav-btn.profile:hover { box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4); }
.nav-btn.admin:hover { box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4); }
/* doc */
/* Кнопки выбора времени */
.time-buttons {
display: flex;
gap: 10px;
margin-top: 10px;
}
.time-btn {
flex: 1;
padding: 10px 15px;
background: #f8f9fa;
border: 2px solid #e9ecef;
border-radius: 8px;
color: #495057;
font-size: 14px;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
}
.time-btn:hover {
background: #e9ecef;
border-color: #dee2e6;
transform: translateY(-2px);
}
.time-btn.active {
background: linear-gradient(135deg, #3498db, #2980b9);
color: white;
border-color: #2980b9;
box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}
.time-btn.active:hover {
background: linear-gradient(135deg, #2980b9, #1f618d);
box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}
.time-btn i {
font-size: 16px;
}