| 1 |
|
| 2 |
$color: red, two, three; |
| 3 |
|
| 4 |
div { |
| 5 |
height: $color; |
| 6 |
} |
| 7 |
|
| 8 |
$a: 1000; |
| 9 |
|
| 10 |
div { |
| 11 |
$a: 2000 !default; |
| 12 |
num: $a; |
| 13 |
} |
| 14 |
|
| 15 |
div { |
| 16 |
$b: 2000 !default; |
| 17 |
num: $b; |
| 18 |
} |
| 19 |
|
| 20 |
$cool_color: null; |
| 21 |
$cool_color: blue !default; |
| 22 |
|
| 23 |
pre { |
| 24 |
color: $cool_color; |
| 25 |
} |
| 26 |
|
| 27 |
$something_man: 100px; |
| 28 |
cool: $something_man; |
| 29 |
|
| 30 |
|
| 31 |
del { |
| 32 |
$something: blue; |
| 33 |
|
| 34 |
div { |
| 35 |
$something: red; |
| 36 |
pre { |
| 37 |
color: $something; |
| 38 |
} |
| 39 |
} |
| 40 |
|
| 41 |
color: $something; |
| 42 |
} |
| 43 |
|
| 44 |
$font-family-simple: Arial !default; |
| 45 |
$font-family-spaces: Helvetica Neue !default; |
| 46 |
$font-family-quotes: "Helvetica Neue" !default; |
| 47 |
$font-family-commas: Helvetica, Arial, sans-serif !default; |
| 48 |
$font-family-sans: "Helvetica Neue", Helvetica, Arial, sans-serif !default; |
| 49 |
|
| 50 |
body { |
| 51 |
font-family: $font-family-simple; |
| 52 |
font-family: $font-family-spaces; |
| 53 |
font-family: $font-family-quotes; |
| 54 |
font-family: $font-family-commas; |
| 55 |
font-family: $font-family-sans; |
| 56 |
} |
| 57 |
|