Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. // Buttons
  2. @mixin button-bg($bg) {
  3. background: $bg;
  4. &:hover {
  5. text-decoration: none;
  6. color: $color-white;
  7. background: darken($bg,8%);
  8. transition: all 0.3s ease;
  9. }
  10. &:active {
  11. text-decoration: none;
  12. color: $color-white;
  13. background: darken($bg,25%);
  14. }
  15. }
  16.  
  17. .btn {
  18. margin: 0;
  19. padding: calc-em(8px) calc-em(18px);
  20. font-family: $font-body;
  21. font-size: calc-em(16px);
  22. color: $color-white;
  23. background-color: $color-primary;
  24. text-decoration: none;
  25. border-radius: 3px;
  26. &.primary {
  27. @include button-bg($color-primary);
  28. }
  29. &.secondary {
  30. @include button-bg($color-secondary);
  31. }
  32. &.white {
  33. @include button-bg($color-white);
  34. }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement