From 2052f08b6cf24150dddf30a1fa4d7a8b7174d471 Mon Sep 17 00:00:00 2001 From: pwvk5sz4t <876457502@qq.com> Date: Thu, 31 Oct 2024 01:09:35 +0800 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..7592346 --- /dev/null +++ b/styles.css @@ -0,0 +1,32 @@ +body { + font-family: Arial, sans-serif; + display: flex; + justify-content: center; + align-items: center; + height: 100vh; + margin: 0; + background-color: #f0f0f0; +} + +.container { + background-color: #fff; + padding: 20px; + border-radius: 8px; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); + text-align: center; +} + +h1 { + margin-bottom: 20px; +} + +input, button { + padding: 10px; + font-size: 16px; + margin: 5px; +} + +#result { + margin-top: 20px; + font-size: 18px; +} \ No newline at end of file