From 22ad8f2cdb1fc54e00689aa08ec05408fed05d82 Mon Sep 17 00:00:00 2001 From: zyqunix Date: Thu, 12 Jun 2025 10:53:21 +0200 Subject: [PATCH] binary --- binary/index.html | 2 +- binary/style.css | 17 +++++++---------- 2 files changed, 8 insertions(+), 11 deletions(-) diff --git a/binary/index.html b/binary/index.html index a4e8613..fb770bc 100644 --- a/binary/index.html +++ b/binary/index.html @@ -8,7 +8,7 @@ -
+

Binary Translator

diff --git a/binary/style.css b/binary/style.css index 479d68d..1bd6fbb 100644 --- a/binary/style.css +++ b/binary/style.css @@ -1,10 +1,7 @@ @import url(/global.css); -.container { - text-align: center; - padding: 20px; - border-radius: 20px; - box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7); +.cards { + text-align: center; } textarea, input, button { @@ -13,21 +10,21 @@ textarea, input, button { padding: 10px; border-radius: 10px; border: none; - background-color: #333; - color: #f0f0f0; + background-color: var(--surface1); + color: var(--text); } textarea { resize: none; - margin-right: 10px; } button { cursor: pointer; - background-color: #444; + background-color: var(--surface1); + margin-bottom: 20px; } button:hover { - background-color: #555; + background-color: var(--surface2); }