text.css 510 B

12345678910111213141516171819202122232425
  1. .form-control {
  2. background-clip: padding-box;
  3. background-color: #fff;
  4. border-radius: 4px;
  5. border: 1px solid #ced4da;
  6. color: #495057;
  7. display: inline-block;
  8. font-family: inherit;
  9. font-size: 16px;
  10. height: 38px;
  11. line-height: 1.5;
  12. margin: 0;
  13. overflow: visible;
  14. padding: 6px 12px;
  15. transition: box-shadow .15s ease-in-out;
  16. vertical-align: middle;
  17. }
  18. .form-control:focus {
  19. background-color: #fff;
  20. border-color: #80bdff;
  21. box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
  22. color: #495057;
  23. outline: 0;
  24. }