_button.scss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .button {
  2. border: none;
  3. outline: none;
  4. padding: 0.75rem;
  5. margin-top: 2.5rem;
  6. margin-right: 0.5rem;
  7. border-radius: 0.25rem;
  8. text-decoration: none;
  9. cursor: pointer;
  10. @include transition(all, 0.15s, ease-in);
  11. &[data-color="default"] {
  12. @include themify($themes) {
  13. color: themed('landing-button-default');
  14. background-color: transparent;
  15. border: 1px solid themed('landing-button-default');
  16. @include on-event {
  17. color: themed('body-background-color');
  18. border: 1px solid darken(themed('landing-button-default'), 15%);
  19. background-color: themed('landing-button-default');
  20. }
  21. }
  22. }
  23. &[data-color="primary"] {
  24. @include themify($themes) {
  25. color: themed('landing-button-primary');
  26. background-color: transparent;
  27. border: 1px solid themed('landing-button-primary');
  28. @include on-event {
  29. color: themed('body-background-color');
  30. border: 1px solid darken(themed('landing-button-primary'), 15%);
  31. background-color: themed('landing-button-primary');
  32. }
  33. }
  34. }
  35. }