aboutsummaryrefslogtreecommitdiff
path: root/server/src/routes/ui/style/forms.css
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/routes/ui/style/forms.css')
-rw-r--r--server/src/routes/ui/style/forms.css21
1 files changed, 21 insertions, 0 deletions
diff --git a/server/src/routes/ui/style/forms.css b/server/src/routes/ui/style/forms.css
new file mode 100644
index 0000000..959a62e
--- /dev/null
+++ b/server/src/routes/ui/style/forms.css
@@ -0,0 +1,21 @@
+input[type="text"],
+input[type="password"] {
+ border-radius: 7px;
+ padding: 0.3em;
+ margin: 0.2em;
+ border: 2px solid var(--accent-light);
+}
+
+form.account {
+ padding: 3em;
+ border-radius: 1em;
+ background-color: var(--background-light);
+
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+}
+form.account h1 {
+ margin-top: 0px;
+}