diff options
author | Jannick <[email protected]> | 2024-05-02 11:00:53 +0200 |
---|---|---|
committer | Jannick <[email protected]> | 2024-05-02 11:00:53 +0200 |
commit | 8862f3319d8804a36fa3b62e7a1c4f714e42efb0 (patch) | |
tree | f074361243614d4377b759d491679c79f378a52a /static/styles | |
parent | e407f10fefa8159520b9e782dde97f2f053649c0 (diff) | |
parent | a1fa1ebf6e390d9705da13eb23e6b3fd3802d1f1 (diff) |
Merge branch 'main' of github.com:linnnus/blind-guild
Diffstat (limited to 'static/styles')
-rw-r--r-- | static/styles/manage.css | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/static/styles/manage.css b/static/styles/manage.css new file mode 100644 index 0000000..d2e67c9 --- /dev/null +++ b/static/styles/manage.css @@ -0,0 +1,50 @@ +/* + * This file contains styles specific to the "manage" view. The corresponding + * HTML/template file is `views/manage.html`. + */ + +main { + /* Center align and keep width readable. */ + width: 100%; + max-width: 500px; + margin: 2rem auto; +} + +.applications__item { + border: 2px solid white; + border-radius: 5px; + padding: 1rem; +} + +.application__username { + font-size: x-large; +} + +.applications { + display: flex; + flex-direction: column; + gap: 1rem; +} + +.action { + display: contents; +} + +.action__button { + width: 48%; +} + +.action__button:hover { filter: brightness(90%); } +.action__button:active { filter: brightness(60%); } + +.action__button--accept { + border: 2px solid #4b694b; + background-color: #608660; + color: white; +} + +.action__button--reject { + border: 2px solid #891818; + background-color: #cd4747; + color: white; +} |