From 5c0810afd082b122046c4250f0bc6bbcd957d741 Mon Sep 17 00:00:00 2001 From: vanten-s Date: Wed, 18 Dec 2024 11:25:58 +0100 Subject: [PATCH] Styling --- main.css | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 main.css diff --git a/main.css b/main.css new file mode 100644 index 0000000..d3aa5cd --- /dev/null +++ b/main.css @@ -0,0 +1,24 @@ +:root { + --base: #1e1e2e; + --mantle: #181825; + --text: #cdd6f4; +} + +body { + background-color: var(--mantle); + color: var(--text); + font-family: monospace; +} + +.input { + background-color: inherit; + color: inherit; + font: inherit; + padding: 0; + border: none; +} + +.input:focus { + outline: none; + box-shadow: none; +}