From b370d5a7df33583701337d988bb954dad9dff0bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Jab=C5=82o=C5=84ski?= Date: Sun, 10 Aug 2025 09:56:58 +0200 Subject: [PATCH] refactor: extract and tweak css style --- public/index.html | 26 +++----------------------- public/styles.css | 20 ++++++++++++++++++++ 2 files changed, 23 insertions(+), 23 deletions(-) create mode 100644 public/styles.css diff --git a/public/index.html b/public/index.html index 88f8641..4b354f2 100644 --- a/public/index.html +++ b/public/index.html @@ -2,30 +2,10 @@ mBank mt940 konwerter + + + -
diff --git a/public/styles.css b/public/styles.css new file mode 100644 index 0000000..8408489 --- /dev/null +++ b/public/styles.css @@ -0,0 +1,20 @@ +body { + max-width: 600px; + margin: 0 auto; +} + +button { + width: 100%; +} + +.hidden { + display: none; +} + +.success { + background-color: hsl(120, 100%, 85.1%); + padding: 2rem; + margin: 1rem; + font-size: 1.2rem; + color: hsl(120, 100%, 7.1%); +}