auto-progress-bar.css 511 B

12345678910111213141516171819202122232425262728
  1. /* Progress bar styles */
  2. .progress-bar__header {
  3. display: flex;
  4. justify-content: space-between;
  5. align-items: center;
  6. margin-bottom: 5px;
  7. }
  8. .progress-bar__label,
  9. .progress-bar__percentage {
  10. font-size: 14px;
  11. font-weight: 600;
  12. }
  13. .progress-bar__track {
  14. width: 100%;
  15. height: 8px;
  16. background-color: #e0e0e0;
  17. border-radius: 50px;
  18. overflow: hidden;
  19. }
  20. .progress-bar__fill {
  21. height: 100%;
  22. width: 0%;
  23. border-radius: 50px;
  24. transition: width 1s ease-in-out;
  25. }