summaryrefslogtreecommitdiffstats
path: root/static
diff options
context:
space:
mode:
authorRose Hogenson <rosehogenson@posteo.net>2025-09-20 19:54:13 -0700
committerRose Hogenson <rosehogenson@posteo.net>2025-09-20 19:54:13 -0700
commit34a2a69a28457f5b58c357cb19f091330cca6110 (patch)
tree983959c441b98d2d55de3af6ed0ef70b51b1aa12 /static
parentdf82026872e73e58a8efa515f23ccb903bf7b311 (diff)
downloadroseh.moe-34a2a69a28457f5b58c357cb19f091330cca6110.tar.zst
Don't use http basic auth
I think http basic auth kind of sucks
Diffstat (limited to 'static')
-rw-r--r--static/styles.css21
1 files changed, 21 insertions, 0 deletions
diff --git a/static/styles.css b/static/styles.css
index 9e7d347..91e6fde 100644
--- a/static/styles.css
+++ b/static/styles.css
@@ -73,3 +73,24 @@ div.content-container {
padding: 50px;
display: flex;
}
+
+p.login-error {
+ color: red;
+}
+
+form.password-form {
+ display: flex;
+ align-items: center;
+}
+
+label.password-label {
+ padding-right: 20px;
+}
+
+input.password {
+ background: #f5f5f5;
+ outline: none;
+ border: 5px solid #ff69b4;
+ border-radius: 15px;
+ box-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
+}