aboutsummaryrefslogtreecommitdiff
path: root/frontend/style.sass
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/style.sass')
-rw-r--r--frontend/style.sass36
1 files changed, 25 insertions, 11 deletions
diff --git a/frontend/style.sass b/frontend/style.sass
index 3e0c6ab..1b0173c 100644
--- a/frontend/style.sass
+++ b/frontend/style.sass
@@ -3,8 +3,9 @@ $ac-dark: #452273
$light: rgb(255, 116, 227)
$ac-light: rgb(217, 99, 193)
-$accept: #0f0
-$reject: #f00
+$positive: #0f0
+$negative: #f00
+$warn: #fa0
body
background-color: $dark
@@ -24,11 +25,11 @@ h1
box-shadow: 0px 0px 10px 0px black
&.level-error
- color: #ff0000
+ color: $negative
&.level-success
- color: #00ff00
+ color: $positive
&.level-warn
- color: #ffe600
+ color: $warn
section.info
margin: 5em
@@ -117,20 +118,33 @@ div.pending-block
&.pending-accept
background-color: black
- color: $accept
- border: 1px solid $accept
+ color: $positive
+ border: 1px solid $positive
&:hover
- background-color: $accept
+ background-color: $positive
color: black
&.pending-reject
background-color: black
- color: $reject
- border: 1px solid $reject
+ color: $negative
+ border: 1px solid $negative
&:hover
- background-color: $reject
+ background-color: $negative
color: black
+ p.pending-bang
+ color: #87ffaf
+ p.pending-url
+ font-size: 0.8em
+ color: gray
+ p.pending-email
+ font-size: 0.8em
+ color: $light
+
+ p.verdict-error
+ margin-left: 2em
+ color: $warn
+
dialog
background-color: $dark
button