diff options
Diffstat (limited to 'tests/sass/resources/scss/variables.scss')
-rw-r--r-- | tests/sass/resources/scss/variables.scss | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/sass/resources/scss/variables.scss b/tests/sass/resources/scss/variables.scss new file mode 100644 index 0000000000..2b39ef4a8d --- /dev/null +++ b/tests/sass/resources/scss/variables.scss @@ -0,0 +1,16 @@ +$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; + font-family: $chameleon-font-family; +} + +.border { + padding: $margin; + margin: $margin; + border-color: $blue; +}
\ No newline at end of file |