_labels.scss 326 B

1234567891011121314151617
  1. // LABEL STATES
  2. // -----------------------------------------------------------------------------
  3. .label-default {
  4. background: $color-default;
  5. color: $color-default-inverse;
  6. }
  7. .label-sm {
  8. font-size: 50%;
  9. }
  10. @each $state in $states {
  11. .label-#{nth($state,1)} {
  12. background: #{nth($state,2)};
  13. color: #{nth($state,3)};
  14. }
  15. }