CSS3 hover transition property

0 votes
210 views
added Aug 17, 2017 in SCSS by anonymous
edited Apr 19, 2018 by LC Marshal
@mixin secondary-btn-color {
  border-color: $grey_light_dark;
  background: #ffffff;
  color: $grey_dark;
  &:hover {
    border-color: darken($grey_light_dark, 8%);
    background: $grey_lightest;
    color: darken($grey_light_dark, 18%);
  }
  .fa {
    color: $grey_dark;
  }
}
lazacode.org - Malaysia's programming knowledge sharing platform, where everyone can share their finding as reference to others.
...