shop.balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

_text-emphasis.scss (222B)


      1 // Typography
      2 
      3 // [converter] $parent hack
      4 @mixin text-emphasis-variant($parent, $color) {
      5   #{$parent} {
      6     color: $color;
      7   }
      8   a#{$parent}:hover,
      9   a#{$parent}:focus {
     10     color: darken($color, 10%);
     11   }
     12 }