taylorcammack
6/17/2014 - 4:37 PM

Generated by SassMeister.com.

Generated by SassMeister.com.

a {
  font-weight: bold;
  text-decoration: none;
  color: #c00;
}
a:hover, a:active, a:focus {
  outline: none;
  color: #09f;
}

.btn {
  background-color: #09f;
}
.btn:hover, .btn:active, .btn:focus {
  background-color: #007acc;
}
// ----
// Sass (v3.3.8)
// Compass (v1.0.0.alpha.19)
// ----

// When we give an element some ‘attention’.
@mixin attention() {

    &:hover,
    &:active,
    &:focus {
        @content;
    }

}

a {
    font-weight: bold;
    text-decoration: none;
    color: #c00;

    @include attention() {
        outline: none;
        color: #09f;
    }

}

.btn {
    background-color: #09f;

    @include attention() {
        background-color: darken(#09f, 10Q%);
    }

}