/
Dimanlo
/
proect
Обзор
Документация
Войти
/
Dimanlo
/
proect
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
web-application/frontend/css/chart.css
52 строки
1 KB
dimanlo
Add files via upload
18 дек 2025, 15:22
Не верифицирован
18 дек 2025, 15:22
106860f
Код
Авторство
О чём код?
/* Стили для графиков Chart.js */ .charts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-bottom: 3rem; } .chart-container { position: relative; height: 400px; width: 100%; background: white; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); padding: 1.5rem 1.5rem 1rem 1.5rem; padding-top: 2rem; animation: fadeIn 0.6s ease-out; overflow: hidden; box-sizing: border-box; display: flex; flex-direction: column; } .chart-container canvas { max-width: 100% !important; max-height: calc(100% - 3rem) !important; margin-top: 0.5rem; } .chart-container h3 { margin-bottom: 1rem; color: #333; font-size: 1.2rem; } @media (max-width: 768px) { .charts-grid { grid-template-columns: 1fr; } .chart-container { height: 300px; } } @media (max-width: 480px) { .chart-container { height: 250px; padding: 1rem; } }