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

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

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