We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
#Variables
$font-stack: Helvetica, sans-serif; $primary-color: #333; body { font: 100% $font-stack; color: $primary-color; }
Variables start with a $, and are separated from their values by a colon, and end with a semi-colon.
Calling a variable is just like any CSS value.
#Mixins