diff options
author | metamuffin <metamuffin@disroot.org> | 2023-01-29 18:23:30 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-01-29 18:23:30 +0100 |
commit | 15d0a83247c3b6091f006df967f54f8399030cf6 (patch) | |
tree | ea99621ec7c6f58417c56bf671b2937e37487888 /server/src/routes/ui/style/forms.css | |
parent | de8d69d2886ae50e28da210fc690c99457a804bb (diff) | |
download | jellything-15d0a83247c3b6091f006df967f54f8399030cf6.tar jellything-15d0a83247c3b6091f006df967f54f8399030cf6.tar.bz2 jellything-15d0a83247c3b6091f006df967f54f8399030cf6.tar.zst |
user settings page
Diffstat (limited to 'server/src/routes/ui/style/forms.css')
-rw-r--r-- | server/src/routes/ui/style/forms.css | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/server/src/routes/ui/style/forms.css b/server/src/routes/ui/style/forms.css index ab7ca7f..82a6157 100644 --- a/server/src/routes/ui/style/forms.css +++ b/server/src/routes/ui/style/forms.css @@ -11,6 +11,26 @@ input[type="password"] { margin: 0.2em; border: 2px solid var(--accent-light); } +input[type="text"]:disabled, +input[type="password"]:disabled { + border: 2px solid grey; +} + +input[type="submit"] { + padding: 0.5em; + margin: 1em; + justify-self: center; + border: 0px solid transparent; + background-color: var(--accent-dark); + border-radius: 8px; +} +input[type="submit"]:disabled { + background-color: grey; +} + +input[type="submit"]:hover { + filter: hue-rotate(-20deg); +} form.account { padding: 3em; |