diff options
author | Jannick <[email protected]> | 2024-04-29 11:31:51 +0200 |
---|---|---|
committer | Jannick <[email protected]> | 2024-04-29 11:31:51 +0200 |
commit | 22b0b52f8f98a68b08111802c4edcb30b692bcb0 (patch) | |
tree | 4924df0312b5f4fb78796b080c35039ec5870732 /static/styles/join_form.css | |
parent | 51ee6bae10c4a01b56f063c133a18c380ff3d23e (diff) | |
parent | 692a7fc3a5b4e6c655732c1b29274b66bea515d9 (diff) |
Merge branch 'main' of github.com:linnnus/blind-guild
Diffstat (limited to 'static/styles/join_form.css')
-rw-r--r-- | static/styles/join_form.css | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/static/styles/join_form.css b/static/styles/join_form.css new file mode 100644 index 0000000..f4ba0f1 --- /dev/null +++ b/static/styles/join_form.css @@ -0,0 +1,33 @@ +/* + * This file contains styles specific to the "join_form" view. The corresponding + * HTML/template file is `views/join_form.html`. + * + * See also the file `static/styles/join_common.css` which contains some styles + * which are reused among the "join_" group of views. + */ + +.signup { + +} + +.signup__box { + margin-bottom: 1reM; +} + +.signup__label { + font-weight: bold; +} + +.signup__input { + width: 100%; + padding: .5rem; + border-radius: 5px; +} + +textarea.signup__input { + /* Remove UA's default monospace font */ + font-family: inherit; + + /* Horizontal resizing totally breaks our layout :( */ + resize: vertical; +} |