This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
2014-12-10 11:36:38 +00:00
|
|
|
// Typography
|
|
|
|
|
|
|
|
// [converter] $parent hack
|
|
|
|
@mixin text-emphasis-variant($parent, $color) {
|
|
|
|
#{$parent} {
|
|
|
|
color: $color;
|
|
|
|
}
|
2015-08-12 07:06:27 +00:00
|
|
|
a#{$parent}:hover,
|
|
|
|
a#{$parent}:focus {
|
2014-12-10 11:36:38 +00:00
|
|
|
color: darken($color, 10%);
|
|
|
|
}
|
|
|
|
}
|