_button.scss 601 B

123456789101112131415161718192021222324252627282930313233343536
  1. .btn {
  2. padding: .75rem 1.4rem!important;
  3. font-size: .95rem;
  4. height: 36px;
  5. line-height: .7;
  6. border-radius: 0.4rem;
  7. }
  8. .btn-sm, .btn-group-sm > .btn {
  9. padding: 0.5rem 1rem;
  10. font-size: 0.7rem;
  11. line-height: 1.4;
  12. }
  13. .btn-custom {
  14. background: $custom;
  15. border-color: $custom;
  16. color: $white;
  17. }
  18. .btn-custom:hover {
  19. color: $white;
  20. box-shadow: 0 8px 25px -8px $custom;
  21. }
  22. .btn-outline-custom {
  23. background: $white;
  24. border: 1px solid $custom;
  25. color: $custom;
  26. }
  27. .btn-outline-custom:hover {
  28. background: rgba($custom, .15);
  29. color: $custom;
  30. }