From 30dc1a705360e5c5397f960df76a5331813dce38 Mon Sep 17 00:00:00 2001 From: kalugin66 Date: Mon, 9 Feb 2026 20:49:37 +0500 Subject: [PATCH] lk --- public/index.html | 6 +++--- public/style.css | 25 ++++++++++++++++++++++++- 2 files changed, 27 insertions(+), 4 deletions(-) diff --git a/public/index.html b/public/index.html index db9f1d7..30e5d0e 100644 --- a/public/index.html +++ b/public/index.html @@ -221,14 +221,14 @@ placeholder="Введите email для уведомлений"> Email для уведомлений - - + diff --git a/public/style.css b/public/style.css index d0ab722..c94bc0d 100644 --- a/public/style.css +++ b/public/style.css @@ -4111,4 +4111,27 @@ button.btn-primary { .detailed-stats h3 { margin-bottom: 15px; - } \ No newline at end of file + } + /* Скрытые элементы */ +.hidden { + display: none !important; +} + +/* Или более мягкий вариант - скрыть, но сохранить место */ +.visually-hidden { + position: absolute; + width: 1px; + height: 1px; + margin: -1px; + padding: 0; + overflow: hidden; + clip: rect(0, 0, 0, 0); + border: 0; +} + +/* Если нужно сделать плавное появление позже */ +.hidden-conditional { + opacity: 0.3; + pointer-events: none; + user-select: none; +} \ No newline at end of file