_bootstrap-overrides.scss 528 B

1234567891011121314151617181920212223242526272829303132
  1. // Bootstrap overrides for this template
  2. .text-primary {
  3. color: $primary !important;
  4. }
  5. .btn {
  6. font-weight: 700;
  7. text-transform: uppercase;
  8. border: none;
  9. border-radius: 300px;
  10. @include sans-serif-font;
  11. }
  12. .btn-xl {
  13. padding: 1rem 2rem;
  14. }
  15. .btn-primary {
  16. background-color: $primary;
  17. border-color: $primary;
  18. &:hover,
  19. &:focus,
  20. &:active {
  21. color: $white;
  22. background-color: darken($primary, 5%) !important;
  23. }
  24. &:active,
  25. &:focus {
  26. box-shadow: 0 0 0 0.2rem rgba(240, 95, 64,.5) !important;
  27. }
  28. }