voterunner

quick and dirty votes and discussions
git clone https://git.ce9e.org/voterunner.git

commit
e7ef1ff5525b746d8f8cfa43f645fb1fe31c858f
parent
263e7110c23b1a2fecb94b6c91fcf566d9cb0fde
Author
Tobias Bengfort <tobias.bengfort@gmx.net>
Date
2016-09-11 10:12
use variables in even more places

Diffstat

M static/scss/bar.scss 2 +-
M static/scss/layout.scss 6 +++---
M static/scss/tree.scss 2 +-

3 files changed, 5 insertions, 5 deletions


diff --git a/static/scss/bar.scss b/static/scss/bar.scss

@@ -8,7 +8,7 @@
    8     8 	text-align: center;
    9     9 
   10    10 	&:hover {
   11    -1 		background-color: rgba(255,255,255,0.2);
   -1    11 		background-color: rgba($color-bg, 0.2);
   12    12 	}
   13    13 }
   14    14 

diff --git a/static/scss/layout.scss b/static/scss/layout.scss

@@ -24,7 +24,7 @@ body {
   24    24 body > header {
   25    25 	background: $color-link;
   26    26 	text-align: center;
   27    -1 	border-radius: 0 0 0.4em 0.4em;
   -1    27 	border-radius: 0 0 $padding $padding;
   28    28 	margin: 0;
   29    29 	position: absolute;
   30    30 	top: 0;
@@ -33,7 +33,7 @@ body > header {
   33    33 
   34    34 	h1 {
   35    35 		margin: 0;
   36    -1 		font-size: 2em;
   -1    36 		font-size: 200%;
   37    37 		color: $color-bg;
   38    38 
   39    39 		span {
@@ -46,7 +46,7 @@ body > header {
   46    46 #user,
   47    47 #tree .node .body {
   48    48 	border: 1px solid $color-border;
   49    -1 	border-radius: 0.2em 0.2em 0 0;
   -1    49 	border-radius: ($padding / 2) ($padding / 2) 0 0;
   50    50 }
   51    51 
   52    52 #tree {

diff --git a/static/scss/tree.scss b/static/scss/tree.scss

@@ -9,7 +9,7 @@
    9     9 }
   10    10 
   11    11 .node {
   12    -1 	margin: 0.5em 0;
   -1    12 	margin: $spacer 0;
   13    13 
   14    14 	.body {
   15    15 		background: $color-bg;