_buttons.scss 612 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. // Buttons
  2. button {
  3. &.accent-color {
  4. transition: filter 0.3s ease;
  5. &:hover {
  6. filter: brightness(0.85);
  7. }
  8. }
  9. }
  10. .main__btn {
  11. position: relative;
  12. margin: auto;
  13. a {
  14. display: flex;
  15. align-items: center;
  16. justify-content: center;
  17. height: 100%;
  18. width: 100%;
  19. // color will be set dynamically
  20. &:hover {
  21. // color will be set dynamically
  22. }
  23. }
  24. }
  25. .bottom-btn {
  26. margin: auto;
  27. width: 200px;
  28. background: #c30054;
  29. }
  30. .pulse__btn {
  31. // Pulse animation will be added if needed
  32. }