From 6ad9c9899728b49d76642bcc047351835a7c5cd3 Mon Sep 17 00:00:00 2001 From: host Date: Sun, 2 Aug 2026 22:47:11 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D1=8B=20=D0=B1=D0=B0=D0=B7=D0=BE=D0=B2=D1=8B=D0=B5=20?= =?UTF-8?q?=D1=81=D1=82=D0=B8=D0=BB=D0=B8=20frontend?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/styles.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 frontend/src/styles.css diff --git a/frontend/src/styles.css b/frontend/src/styles.css new file mode 100644 index 0000000..6b1cc66 --- /dev/null +++ b/frontend/src/styles.css @@ -0,0 +1,12 @@ +* { box-sizing: border-box; } + +:root { + color: #e5e7eb; + background: #111827; + font-family: system-ui, sans-serif; +} + +body { margin: 0; } +.page { min-height: 100vh; display: grid; place-items: center; padding: 24px; } +.card { max-width: 640px; width: 100%; padding: 32px; border: 1px solid #374151; border-radius: 16px; background: #1f2937; box-shadow: 0 16px 40px #0004; } +.muted { color: #9ca3af; }