🎨 Ремонт-сайт: фон — точечная текстура вместо сетки-миллиметровки
All checks were successful
Deploy Remont Site / deploy (push) Successful in 19s

По просьбе: убрал квадратную сетку с заднего фона страницы,
вернул прежнюю тонкую точечную текстуру. Остальной чертёжный
стиль без изменений.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01LuV7iC61963xpBTBvxkyEq
This commit is contained in:
Cosmo
2026-07-22 15:59:36 +00:00
parent 76b52f7163
commit 033a99e017

View File

@@ -79,19 +79,18 @@ body {
overflow-x: hidden; overflow-x: hidden;
} }
/* чертёжная миллиметровка на фоне */ /* тонкая тканевая текстура фона */
body::before { body::before {
content: ""; content: "";
position: fixed; position: fixed;
inset: 0; inset: 0;
z-index: -1; z-index: -1;
pointer-events: none; pointer-events: none;
background-image: background-image: radial-gradient(circle at 1px 1px, rgba(43,42,37,.045) 1px, transparent 0);
linear-gradient(var(--grid-line) 1px, transparent 1px), background-size: 22px 22px;
linear-gradient(90deg, var(--grid-line) 1px, transparent 1px), }
linear-gradient(var(--grid-bold) 1px, transparent 1px), :root[data-theme="dark"] body::before {
linear-gradient(90deg, var(--grid-bold) 1px, transparent 1px); background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.03) 1px, transparent 0);
background-size: 28px 28px, 28px 28px, 140px 140px, 140px 140px;
} }
img { max-width: 100%; display: block; } img { max-width: 100%; display: block; }