Im new to sass and tried some code:
$blue: #3bbfce
$margin: 16px
.content-navigation
border-color: $blue
color: darken($blue, 9%)
.border
padding: $margin / 2
margin: $margin / 2
border-color: $blue
But now in my rails app i get this error:
Invalid CSS after "$margin": expected selector or at-rule, was ": 16px"
Whats wrong?
Now i tried something with zurb:
.your-class-name {
@include button;
@include dropdown-button($padding, $pip-color, $base-style);
}
But now i get the error
Undefined mixin 'dropdown-button'.