From 03933f5dda9ff507d9e85c27a112ee4f505a0d47 Mon Sep 17 00:00:00 2001 From: xfarrow Date: Sun, 5 Jan 2025 19:06:12 +0100 Subject: [PATCH] First commit --- index.html | 128 +++++++++++++++++++++++++++++++++++++++++++++++++++++ style.css | 49 ++++++++++++++++++++ 2 files changed, 177 insertions(+) create mode 100644 index.html create mode 100644 style.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..a39ce49 --- /dev/null +++ b/index.html @@ -0,0 +1,128 @@ + + + + + + Simple Browser + + + + + + + +
+ + + + + +
+ + + + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..631cff2 --- /dev/null +++ b/style.css @@ -0,0 +1,49 @@ +body { + font-family: Arial, sans-serif; + display: flex; + justify-content: center; + align-items: center; + height: 100vh; + background-color: #f4f4f4; + margin: 0; +} + +.container { + text-align: center; + width: 300px; +} + +.textbox { + width: 100%; + padding: 10px; + font-size: 16px; + border: 1px solid #ccc; + border-radius: 5px; + box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); + outline: none; + transition: border-color 0.3s; +} + +.textbox:focus { + border-color: #66afe9; +} + +.message { + display: flex; + align-items: center; + margin-top: 10px; + font-size: 14px; +} + +.success { + color: green; +} + +.error { + color: red; +} + +.icon { + margin-right: 8px; + font-size: 18px; +} \ No newline at end of file