_buttons.scss 737 B

123456789101112131415161718192021222324252627282930313233343536
  1. .button {
  2. display: inline-block;
  3. position: relative;
  4. width: 250px;
  5. border: 2px solid transparent;
  6. margin: 0 auto;
  7. padding: 23px 30px;
  8. color: #fff;
  9. font-weight: 400;
  10. font-size: 16px;
  11. line-height: 1.2;
  12. text-decoration: none;
  13. border-radius: 50px;
  14. text-align: center;
  15. transition: color $transition-duration, background-color $transition-duration;
  16. &-primary {
  17. background: $primary-color;
  18. }
  19. &-secondary {
  20. background: $secondary-color;
  21. }
  22. &-ghost {
  23. border-color: rgba(255, 255, 255, 0.4);
  24. }
  25. & + & {
  26. margin-left: 20px;
  27. }
  28. }
  29. .button:hover,
  30. .button:focus {
  31. background: #fff;
  32. color: $primary-color;
  33. outline: none;
  34. }