From 8379a5c918838367b8e81ce056c916defa7d7ca8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BD=AF=E5=B7=A5=E8=AF=BE?= <19071029767.com> Date: Wed, 16 Oct 2024 16:12:05 +0800 Subject: [PATCH] =?UTF-8?q?styles.css=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- styles.css | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 styles.css diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..c9f2e08 --- /dev/null +++ b/styles.css @@ -0,0 +1,53 @@ +body { + font-family: Arial, sans-serif; + background-color: #f4f4f4; + margin: 0; + padding: 20px; +} + +.container { + max-width: 400px; + margin: auto; + padding: 20px; + background: white; + border-radius: 8px; + box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); +} + +h1 { + text-align: center; +} + +label { + display: block; + margin-top: 10px; +} + +input { + width: 100%; + padding: 10px; + margin-top: 5px; + border: 1px solid #ccc; + border-radius: 4px; +} + +button { + margin-top: 15px; + padding: 10px; + width: 100%; + background-color: #28a745; + color: white; + border: none; + border-radius: 4px; + cursor: pointer; +} + +button:hover { + background-color: #218838; +} + +p { + margin-top: 15px; + font-weight: bold; + text-align: center; +} \ No newline at end of file