button.scss 921 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. @import "../colors";
  2. @import "../breakpoints";
  3. main {
  4. button, .button {
  5. outline: none;
  6. box-shadow: none;
  7. border: none;
  8. background-color: $musare_color_primary_blue;
  9. color: $musare_color_white;
  10. text-align: center;
  11. display: block;
  12. width: 100%;
  13. text-decoration: none;
  14. transition: .1s ease;
  15. font-size: 17px;
  16. line-height: 22px;
  17. padding: 9px 0;
  18. margin-bottom: 16px;
  19. &:hover, &:focus {
  20. background-color: $musare_color_secondary_blue;
  21. color: $musare_color_white;
  22. cursor: pointer;
  23. }
  24. &[disabled] {
  25. opacity: .4;
  26. }
  27. }
  28. }
  29. .gray-button {
  30. background-color: $musare_color_secondary_gray;
  31. &:hover, &:focus {
  32. background-color: $musare_color_primary_gray; //TODO Fix these colors
  33. cursor: pointer;
  34. }
  35. }
  36. .red-button {
  37. background-color: $musare_color_primary_red;
  38. &:hover, &:focus {
  39. background-color: $musare_color_secondary_red; //TODO Fix these colors
  40. cursor: pointer;
  41. }
  42. }