Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 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
}