//
// CSS Property
//

@mixin property($attr, $value, $important: '') {
    @if  $value != null and $value != false  {
        #{$attr}: #{$value} #{$important};
    }
}