refactor: декомпозиция фронтенда index.html (вынос static/css/styles.css и static/js/app.js)

This commit is contained in:
2026-08-08 14:32:13 +03:00
parent 3966f1d928
commit 99b32720b6
3 changed files with 235 additions and 238 deletions
+15
View File
@@ -0,0 +1,15 @@
/* Плавное (градиентное) исчезновение текста сверху при скролле */
.fade-scroll-top {
mask-image: linear-gradient(to bottom, transparent 0%, black 14px);
-webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 14px);
}
/* Скрытие стандартного скроллбара */
.no-scrollbar::-webkit-scrollbar {
display: none;
}
.no-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}