diff options
author | metamuffin <metamuffin@disroot.org> | 2023-01-22 21:23:19 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-01-22 21:23:19 +0100 |
commit | d0197c8698a94a19d790c0e859646c3c341031e0 (patch) | |
tree | 8077922864d3218045ecbeaecd7e652fe7547c25 /server/src/routes/ui/style/forms.css | |
parent | 34cb7d576b1aec8b53cf1f6398480cf8d3fa24c7 (diff) | |
download | jellything-d0197c8698a94a19d790c0e859646c3c341031e0.tar jellything-d0197c8698a94a19d790c0e859646c3c341031e0.tar.bz2 jellything-d0197c8698a94a19d790c0e859646c3c341031e0.tar.zst |
fancy login
Diffstat (limited to 'server/src/routes/ui/style/forms.css')
-rw-r--r-- | server/src/routes/ui/style/forms.css | 21 |
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; +} |