Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. // Placeholders
  2. %btn-reset {
  3. background-color: transparent;
  4. border: 0;
  5. color: $pure-black;
  6. display: inline-block;
  7. font-weight: $font-bold;
  8. padding: 0;
  9. transition: background-color $transition-default;
  10.  
  11. &:hover {
  12. text-decoration: none;
  13. }
  14. }
  15.  
  16. // Custom styles
  17. .c-btn {
  18. @extend %btn-reset;
  19. @include sq-font-size(1);
  20. padding: pxToRem(13) pxToRem(48);
  21.  
  22. @media #{$mq-medium} {
  23. @include sq-font-size(.875);
  24. padding: pxToRem(7) pxToRem(13);
  25. }
  26.  
  27. // Color
  28. &--red {
  29. background-color: $cherry;
  30. color: $pure-white;
  31.  
  32. &:hover {
  33. background-color: $marine-blue;
  34. }
  35. }
  36.  
  37. &--grey {
  38. background-color: $tuatara;
  39. color: $pure-white;
  40.  
  41. &:hover {
  42. background-color: darken($tuatara, 5%);
  43. }
  44. }
  45.  
  46. // Size
  47. &--full {
  48. display: block;
  49. text-align: center;
  50. }
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement