From d91038f158eadfb51397a21c7d2ef75d8df1e53a Mon Sep 17 00:00:00 2001 From: mango1o1 <143862092+cheaderthecoder@users.noreply.github.com> Date: Mon, 19 Aug 2024 20:11:29 +0300 Subject: [PATCH] Create style.css --- style.css | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 style.css diff --git a/style.css b/style.css new file mode 100644 index 0000000..2d52ccf --- /dev/null +++ b/style.css @@ -0,0 +1,45 @@ + body { + font-family: Arial, sans-serif; + margin: 0; + padding: 0; + display: flex; + justify-content: center; + align-items: center; + height: 100vh; + background-color: #333; + color: #fff; + } + #converter { + text-align: center; + background-color: #444; + padding: 20px; + border-radius: 8px; + width: 60%; + max-width: 600px; + margin: auto; + } + #input, #output { + width: 100%; + padding: 10px; + margin: 10px 0; + border-radius: 4px; + border: 1px solid #ddd; + min-height: 100px; + background-color: #fff; + color: #000; + } + button { + padding: 10px 20px; + border: none; + border-radius: 4px; + background-color: #007BFF; + color: #fff; + cursor: pointer; + margin: 5px; + } + button:hover { + background-color: #0056b3; + } + select { + margin-bottom: 20px; + }