diff options
author | Lia Lenckowski <lialenck@protonmail.com> | 2023-08-19 13:29:00 +0200 |
---|---|---|
committer | Lia Lenckowski <lialenck@protonmail.com> | 2023-08-19 13:29:00 +0200 |
commit | e68acfe4f2012d74c98c313e7dd4f27897687d0b (patch) | |
tree | cd29b88a982e321d6b8d9aff9a1814d7d3fafd13 /frontend/style.sass | |
parent | b490f802a83382ad1a255cfef47724a0e7a9789b (diff) | |
download | fastbangs-e68acfe4f2012d74c98c313e7dd4f27897687d0b.tar fastbangs-e68acfe4f2012d74c98c313e7dd4f27897687d0b.tar.bz2 fastbangs-e68acfe4f2012d74c98c313e7dd4f27897687d0b.tar.zst |
functional, but only partly styled admin site
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 |