_progress.scss 722B

12345678910111213141516171819202122232425262728293031
  1. @keyframes progress-bar-stripes {
  2. from { background-position: $progress-height 0; }
  3. to { background-position: 0 0; }
  4. }
  5. .progress {
  6. display: flex;
  7. height: $progress-height;
  8. overflow: hidden; // force rounded corners by cropping it
  9. font-size: $progress-font-size;
  10. background-color: $progress-bg;
  11. @include border-radius($progress-border-radius);
  12. }
  13. .progress-bar {
  14. display: flex;
  15. align-items: center;
  16. justify-content: center;
  17. color: $progress-bar-color;
  18. background-color: $progress-bar-bg;
  19. }
  20. .progress-bar-striped {
  21. @include gradient-striped();
  22. background-size: $progress-height $progress-height;
  23. }
  24. .progress-bar-animated {
  25. animation: progress-bar-stripes $progress-bar-animation-timing;
  26. }