summaryrefslogtreecommitdiff
path: root/static/styles/manage.css
diff options
context:
space:
mode:
authorLinnnus <[email protected]>2024-05-01 21:19:47 +0200
committerLinnnus <[email protected]>2024-05-01 21:19:47 +0200
commita1fa1ebf6e390d9705da13eb23e6b3fd3802d1f1 (patch)
tree2b0e8b8d78127631af343be6b3d43c8a679834bc /static/styles/manage.css
parentde9b1edd68b94700d5a8ff65eeef3ecede7c907a (diff)
Add application management page
Diffstat (limited to 'static/styles/manage.css')
-rw-r--r--static/styles/manage.css50
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;
+}