/*-------------------------------------------------------------- # Background cover # example: @include background-cover(); --------------------------------------------------------------*/ @mixin background-cover(){ -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; }