/
stepone
/
climate-srv
Обзор
Документация
Войти
/
stepone
/
climate-srv
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
app/static/styles2.css
59 строк
1 KB
Stepan Egorov
Первая загрузка
29 дек 2024, 18:28
29 дек 2024, 18:28
80798aa
Код
Авторство
О чём код?
/* General reset and styling for consistent appearance */ body { margin: 0; font-family: Arial, sans-serif; background-color: #f4f4f4; color: #333; } /* Styling for the navigation bar */ .navbar { background-color: #0078d4; color: white; padding: 1em; text-align: center; font-size: 1.5em; position: sticky; top: 0; z-index: 1000; } /* Container for all charts */ .charts-container { display: flex; flex-direction: column; align-items: center; margin: 1em; } /* Individual chart styling */ .chart-box { background: white; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); margin: 1em; padding: 1em; border-radius: 8px; width: 100%; } canvas { width: 100% !important; height: 25vh; /* Default for PC and notebooks */ } /* Responsive styles for mobile portrait layout */ @media (max-width: 768px) and (orientation: portrait) { canvas { height: 25vh; /* 25% of viewport height */ } } /* Responsive styles for mobile landscape layout */ @media (max-width: 768px) and (orientation: landscape) { canvas { height: 80vh; /* 80% of viewport height */ } }