Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_badge.scss « mixins « bootstrap « stylesheets « assets - github.com/twbs/bootstrap-rubygem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9fa44b647813b390ac3c71ac0e7e41bb135f7544 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Badges

@mixin badge-variant($color) {
  background-color: $color;

  &[href] {
    @include hover-focus {
      background-color: darken($color, 10%);
    }
  }
}