From dd4d4e1460213b41c19fa8a14913ebe753229a24 Mon Sep 17 00:00:00 2001 From: level01 Date: Tue, 8 Oct 2024 21:55:32 +0900 Subject: [PATCH] =?UTF-8?q?"/"=20=E3=81=AB=E3=83=95=E3=82=A1=E3=82=A4?= =?UTF-8?q?=E3=83=AB=E3=82=92=E3=82=A2=E3=83=83=E3=83=97=E3=83=AD=E3=83=BC?= =?UTF-8?q?=E3=83=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- login.html | 22 ++++++++++++++++++++++ style.css | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 70 insertions(+) create mode 100644 login.html create mode 100644 style.css diff --git a/login.html b/login.html new file mode 100644 index 0000000..e334941 --- /dev/null +++ b/login.html @@ -0,0 +1,22 @@ + + + + + + ログインページ + + + + +
+

AppClassにログイン

+

学籍番号を入力してください

+ + + + +
+ + + + diff --git a/style.css b/style.css new file mode 100644 index 0000000..11afe20 --- /dev/null +++ b/style.css @@ -0,0 +1,48 @@ +body { + font-family: Arial, sans-serif; + margin: 0; + padding: 0; + display: flex; + justify-content: center; + align-items: center; + height: 100vh; + background-color: #f5f5f5; +} + +.container { + background-color: white; + padding: 20px; + width: 90%; + max-width: 400px; + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); + text-align: center; +} + +h1 { + font-size: 1.4rem; + color: #202124; +} + +input[type="text"] { + width: 100%; + padding: 10px; + margin: 10px 0; + border: 1px solid #dadce0; + border-radius: 4px; + box-sizing: border-box; +} + +button { + background-color: #24e81a; + color: white; + padding: 10px 0; + width: 100%; + border: none; + border-radius: 4px; + font-size: 1rem; + cursor: pointer; +} + +button:hover { + background-color: greenyellow; +} \ No newline at end of file