/**
 * Shape/Polygon/Rectangle
 *
 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
 */
@mixin rectangle($width: 100px, $height: 100px, $background: transparent)
{
    width: $width;
    height: $height;
    background: $background;
}