SASS/SCSS Starter Kit
The @mixin box() markup creates a function that sets the width and height of the element to the supplied values.
Shortcut: scss.mixin.box
@mixin box($width, $height: $width){
width: $width;
width: $height;
}