/
Gabryelf
/
Web-Converter
Обзор
Документация
Войти
/
Gabryelf
/
Web-Converter
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
css/sidebar.css
90 строк
2 KB
Valeev Serj
styles_reformat_v0.0.2
18 июл 2026, 17:30
18 июл 2026, 17:30
9b4d5ed
Код
Авторство
О чём код?
/* ===== SIDEBAR STYLES ===== */ /* ===== стили бокового меню с настроками конвертации ===== */ .sidebar { width: 340px; background: rgba(20, 24, 36, 0.92); backdrop-filter: blur(8px); border-right: 1px solid rgba(100, 200, 255, 0.12); display: flex; flex-direction: column; overflow-y: auto; padding: 20px 16px; gap: 14px; flex-shrink: 0; } .sidebar::-webkit-scrollbar { width: 4px; } .sidebar::-webkit-scrollbar-track { background: rgba(100, 200, 255, 0.05); border-radius: 4px; } .sidebar::-webkit-scrollbar-thumb { background: #64c8ff; border-radius: 4px; } .logo { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid rgba(100, 200, 255, 0.15); } .logo-icon { font-size: 32px; } .logo span { font-size: 20px; font-weight: 700; background: linear-gradient(135deg, #64c8ff, #2a9df4); -webkit-background-clip: text; background-clip: text; color: transparent; } .sidebar-section { background: rgba(255, 255, 255, 0.03); border-radius: 16px; padding: 14px; border: 1px solid rgba(100, 200, 255, 0.08); } .section-title { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; color: #64c8ff; margin-bottom: 12px; } .sidebar-actions { margin-top: auto; display: flex; flex-direction: column; gap: 8px; padding-top: 14px; border-top: 1px solid rgba(100, 200, 255, 0.08); } @media (max-width: 900px) { .sidebar { width: 280px; } } @media (max-width: 700px) { .sidebar { width: 100%; max-height: 50%; flex-direction: row; flex-wrap: wrap; gap: 10px; padding: 10px; overflow-y: visible; } .sidebar-section { flex: 1; min-width: 160px; } .sidebar-actions { flex-direction: row; flex-wrap: wrap; } }