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

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

@mixin text-emphasis-variant($parent, $color) {
  #{$parent} {
    color: $color;
  }
  a#{$parent} {
    @include hover-focus {
      color: darken($color, 10%);
    }
  }
}