From 625cd814b017436f58d5ab460563738cb62428bf Mon Sep 17 00:00:00 2001 From: sneedgroup-holder Date: Mon, 21 Oct 2024 22:13:27 +0000 Subject: [PATCH] Add styles.css --- styles.css | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 styles.css diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..d3ad3a5 --- /dev/null +++ b/styles.css @@ -0,0 +1,32 @@ +body { + font-family: Arial, sans-serif; + background-color: #f4f4f4; + display: flex; + justify-content: center; + align-items: center; + height: 100vh; + margin: 0; +} + +.container { + background: white; + padding: 20px; + border-radius: 8px; + box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); + text-align: center; +} + +input { + padding: 10px; + width: 200px; + margin-bottom: 10px; +} + +button { + padding: 10px 15px; + cursor: pointer; +} + +#resultContainer { + margin-top: 20px; +}