diff options
Diffstat (limited to 'theme-compiler/tests/resources/scss/variables.scss')
-rw-r--r-- | theme-compiler/tests/resources/scss/variables.scss | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/scss/variables.scss b/theme-compiler/tests/resources/scss/variables.scss new file mode 100644 index 0000000000..60acc5dd10 --- /dev/null +++ b/theme-compiler/tests/resources/scss/variables.scss @@ -0,0 +1,17 @@ +$blue: #3bbfce; +$margin: 8px; +$chameleon-font-family: Arial, Helvetica, "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif; + +.content-navigation { + border-color: $blue; + $blue: #0000ff; + color: $blue; + color1: darken($blue, 9%); + font-family: $chameleon-font-family; +} + +.border { + padding: $margin; + margin: $margin; + border-color: $blue; +}
\ No newline at end of file |