_buttons.scss 487 B

1234567891011121314151617181920212223242526272829
  1. // Buttons
  2. //
  3. // Custom buttons for the docs.
  4. .btn-bd-primary {
  5. font-weight: 500;
  6. color: $bd-purple-bright;
  7. border-color: $bd-purple-bright;
  8. &:hover,
  9. &:active {
  10. color: #fff;
  11. background-color: $bd-purple-bright;
  12. border-color: $bd-purple-bright;
  13. }
  14. }
  15. .btn-bd-download {
  16. font-weight: 500;
  17. color: $bd-download;
  18. border-color: $bd-download;
  19. &:hover,
  20. &:active {
  21. color: $bd-dark;
  22. background-color: $bd-download;
  23. border-color: $bd-download;
  24. }
  25. }