Newer
Older
Old_Homepage / homepage / sass / bootstrap / mixins / _text-emphasis.scss
@zion zion on 30 Sep 2016 210 bytes change file name
// Typography

// [converter] $parent hack
@mixin text-emphasis-variant($parent, $color) {
  #{$parent} {
    color: $color;
  }
  a#{$parent}:hover,
  a#{$parent}:focus {
    color: darken($color, 10%);
  }
}