_buttons.scss 322 B

1234567891011121314151617181920
  1. // Buttons
  2. .btn-outline-inverse {
  3. color: #428BCA;
  4. background-color: transparent;
  5. border-color: #428BCA;
  6. padding: 15px 30px;
  7. font-size: 20px;
  8. transition: all .1s ease-in-out;
  9. &:hover {
  10. color: #fff;
  11. border-color: #428BCA;
  12. background-color: #428BCA;
  13. }
  14. }
  15. .btn-toolbar {
  16. margin-bottom: 20px;
  17. }