three-dots
Version:
CSS loading animations made with single element
15 lines (12 loc) • 369 B
text/less
// ==============================================
// Mixins
// ==============================================
.dot(@width: @dot-width, @height: @dot-height, @radius: @dot-radius, @bg-color: @dot-bg-color, @color: @dot-color) {
background-color: @bg-color;
border-radius: @radius;
color: @color;
height: @height;
width: @width;
}
@d-max: 50px;
@d-min: 12px;