From 81990753ff4a53f2d4b49ecb9d9e2381a2fd6a2d Mon Sep 17 00:00:00 2001 From: masterpmi Date: Thu, 23 Jul 2026 21:37:10 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20static/css/custom.css?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- static/css/custom.css | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/static/css/custom.css b/static/css/custom.css index 0daf4f2..1a95440 100644 --- a/static/css/custom.css +++ b/static/css/custom.css @@ -276,9 +276,38 @@ main img { font-size: 1.3em; } } +/* ------------------------------------------------------------------ */ +/* Статистика института */ +.stats-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); + gap: 20px; + margin: 30px 0; +} + +.stat-card { + background: linear-gradient(135deg, #003366, #004080); + color: white; + padding: 25px; + border-radius: 10px; + text-align: center; + box-shadow: 0 4px 12px rgba(0, 51, 102, 0.2); +} + +.stat-number { + font-size: 2.5em; + font-weight: bold; + margin-bottom: 10px; +} + +.stat-label { + font-size: 0.9em; + opacity: 0.9; +} + +/* ------------------------------------------------------------------ */ /* Тёмная тема (переключатель) */ -/* Тёмная тема */ body.dark-mode { background: linear-gradient(135deg, #1a1f2e 0%, #2d3748 100%); color: #e2e8f0;