Guest User

Untitled

a guest
Nov 21st, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. // let's chain our @mixin linear-gradient from _mixins.scss
  2. // and drive the colors from _colors.scss
  3. @mixin blue-gradient {
  4. @include linear-gradient( top, $lightblue, $darkblue );
  5. &:hover { @include linear-gradient( top, lighten($lightblue, 10%), $darkblue );
  6. &:active { background: $darkblue; }
  7. }
Add Comment
Please, Sign In to add comment