From 5cca916fbc17b0e829b287582879e7104ac1ea81 Mon Sep 17 00:00:00 2001 From: KoDer Date: Sun, 24 May 2026 17:14:57 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20style.css?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- style.css | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 style.css diff --git a/style.css b/style.css new file mode 100644 index 0000000..170f252 --- /dev/null +++ b/style.css @@ -0,0 +1,49 @@ +body { + font-family: Arial, sans-serif; + background-color: #f0f2f5; + display: flex; + justify-content: center; + align-items: center; + height: 100vh; + margin: 0; +} + +.card { + background: white; + padding: 30px; + border-radius: 12px; + box-shadow: 0 4px 15px rgba(0,0,0,0.1); + text-align: center; + max-width: 400px; +} + +#css-status { + color: #2ecc71; + font-weight: bold; +} + +button { + background-color: #3498db; + color: white; + border: none; + padding: 10px 20px; + font-size: 16px; + border-radius: 6px; + cursor: pointer; + margin-top: 15px; + transition: background 0.2s; +} + +button:hover { + background-color: #2980b9; +} + +.hidden { + display: none; +} + +#js-status { + color: #3498db; + font-weight: bold; + margin-top: 15px; +}