summaryrefslogtreecommitdiff
path: root/scss/tests/files/original-doctests/001-variables.scss
blob: 3b8a0674b0d12d2972d62c417ef6322965c1383e (plain)
1
2
3
4
5
6
7
8
9
10
@option style:legacy, short_colors:yes, reverse_colors:yes;
@variables {
    $path = unquote('../img/tmpl1/png');
    $color1 = #FF00FF;
}
.selector {
    background-image: url(#{$path}/head_bg.png);
    background-color: $color1;
    border-top: 1px solid $color1;
}