buttons.less 527 B

12345678910111213141516171819202122232425262728293031
  1. // Outline button for use within the docs
  2. .btn-outline {
  3. color: #563d7c;
  4. background-color: transparent;
  5. border-color: #563d7c;
  6. &:hover,
  7. &:focus,
  8. &:active {
  9. color: #fff;
  10. background-color: #563d7c;
  11. border-color: #563d7c;
  12. }
  13. }
  14. // Inverted outline button (white on dark)
  15. .btn-outline-inverse {
  16. color: #fff;
  17. background-color: transparent;
  18. border-color: #cdbfe3;
  19. &:hover,
  20. &:focus,
  21. &:active {
  22. color: #563d7c;
  23. text-shadow: none;
  24. background-color: #fff;
  25. border-color: #fff;
  26. }
  27. }