app.css 911 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .tabs-container {
  2. font-family: Arial, sans-serif!important;
  3. }
  4. .nav-tabs {
  5. display: flex!important;
  6. border-bottom: none!important;
  7. background-color: #e2e3e7!important;
  8. padding: 0!important;
  9. margin: 0!important;
  10. list-style: none!important;
  11. }
  12. .nav-item {
  13. flex: 1!important;
  14. text-align: center!important;
  15. }
  16. .nav-link {
  17. display: block!important;
  18. padding: 15px 0!important;
  19. font-size: 14px!important;
  20. text-decoration: none!important;
  21. color: black!important;
  22. border: 1px solid transparent!important;
  23. background-color: #e2e3e7!important;
  24. font-weight: normal!important;
  25. transition: all 0.3s ease!important;
  26. }
  27. .nav-link:hover {
  28. color: #023047!important;
  29. font-weight: bold!important;
  30. }
  31. .nav-link.active {
  32. background-color: #023047!important;
  33. color: white!important;
  34. font-weight: bold!important;
  35. border: none!important;
  36. }