// *************************************
//
//   Helpers (placeholders)
//   -> Various helper placeholders
//   -> (Should be extended in modules)
//
//   -> NB: This file should grow with
//   -> each project!
//
// *************************************


// -------------------------------------
//   Image utilities
// -------------------------------------

%responsive-img {
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


// -------------------------------------
//   Clearfix
// -------------------------------------

%clearfix {
    &:after{
        content:"";
        display:table;
        clear:both;
    }
}

// -------------------------------------
//   Add/remove floats
// -------------------------------------

%float--right   { float:right; }
%float--left    { float:left ; }
%float--none    { float:none ; }


// -------------------------------------
//   Text alignment
// ------------------------------------

%text--left     { text-align:left  ; }
%text--center   { text-align:center; }
%text--right    { text-align:right ; }


// -------------------------------------
//   Font weights
// -------------------------------------

%weight--light      { font-weight:300; }
%weight--normal     { font-weight:400; }
%weight--semibold   { font-weight:600; }

