/* _txt-shadow.less ------------- define txt-shadow mixin */ /* applies a drop shadow to text ------------- arguments h-shadow v-shadow blur color example .txt-shadow(0 0 0 rgba(0,0,0,0)); */ .txt-shadow(@args){ text-shadow: @args; }