diff options
Diffstat (limited to 'frontend/style.sass')
-rw-r--r-- | frontend/style.sass | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/frontend/style.sass b/frontend/style.sass index 5828f41..3e0c6ab 100644 --- a/frontend/style.sass +++ b/frontend/style.sass @@ -3,6 +3,9 @@ $ac-dark: #452273 $light: rgb(255, 116, 227) $ac-light: rgb(217, 99, 193) +$accept: #0f0 +$reject: #f00 + body background-color: $dark margin: 0px @@ -102,6 +105,32 @@ section.admin-btn position: absolute right: 10% +div.pending-block + display: flex + margin: 1em + align-items: center + span + display: inline-block + button + transition: background-color 0.2s, color 0.2s + border-radius: 0.5em + + &.pending-accept + background-color: black + color: $accept + border: 1px solid $accept + &:hover + background-color: $accept + color: black + + &.pending-reject + background-color: black + color: $reject + border: 1px solid $reject + &:hover + background-color: $reject + color: black + dialog background-color: $dark button |