UNPKG

three-dots

Version:

CSS loading animation made by single element.

17 lines (14 loc) 369 B
/** * ============================================== * Mixins * ============================================== */ .dot(@width: @dotWidth, @height: @dotHeight, @radius: @dotRadius, @bgColor: @dotBgColor, @color: @dotColor) { background-color: @bgColor; border-radius: @radius; color: @color; height: @height; width: @width; } @d-max: 50px; @d-min: 12px;