Last Updated: February 25, 2016
·
526
· beau

Capture your CSS logic using Sass.

When reading your CSS it's often difficult to understand where "magic" numbers come from. By using variables you can document how values are determined…

$foo: 10px
$bar: 20px
.foobar
    width: $foo + $bar