//**********************************************************
// Placeholders
//----------------------------------------------------------
//
//**********************************************************

// Gutters
@include setPlaceholderGutter(margin);
@include setPlaceholderGutter(padding);

// Cursors
%cursor {
    @each $cursor in $list_cursors {
        &-#{$cursor} {
            cursor: $cursor;
        }
    }
}

// Fonts
%font {
    &-family {
        &-sans-serif {
            font-family: $font_family_sans_serif;
        }

        &-monospace {
            font-family: $font_family_monospace;
            direction:   ltr;
        }
    }
}

// Typography
%heading {
    @extend %margin-top-0, %margin-bottom-half;
    //@extend %col; // TODO: @extend %col
}
