Add customisation variables

This commit is contained in:
Jeremy Thomas
2017-07-28 21:05:15 +01:00
parent 2e08a844d7
commit 1be49f2190
47 changed files with 888 additions and 683 deletions

9
sass/elements/progress.sass Normal file → Executable file
View File

@@ -1,3 +1,6 @@
$progress-bar-background-color: $border !default
$progress-value-background-color: $text !default
.progress
+block
-moz-appearance: none
@@ -10,11 +13,11 @@
padding: 0
width: 100%
&::-webkit-progress-bar
background-color: $border
background-color: $progress-bar-background-color
&::-webkit-progress-value
background-color: $text
background-color: $progress-value-background-color
&::-moz-progress-bar
background-color: $text
background-color: $progress-value-background-color
// Colors
@each $name, $pair in $colors
$color: nth($pair, 1)