From a1fa1ebf6e390d9705da13eb23e6b3fd3802d1f1 Mon Sep 17 00:00:00 2001 From: Linnnus Date: Wed, 1 May 2024 21:19:47 +0200 Subject: Add application management page --- static/styles/manage.css | 50 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 static/styles/manage.css (limited to 'static') 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; +} -- cgit v1.2.3