_progress.scss 841 B

123456789101112131415161718192021222324252627282930313233
  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. @include box-shadow($progress-box-shadow);
  13. }
  14. .progress-bar {
  15. display: flex;
  16. flex-direction: column;
  17. justify-content: center;
  18. color: $progress-bar-color;
  19. text-align: center;
  20. background-color: $progress-bar-bg;
  21. @include transition($progress-bar-transition);
  22. }
  23. .progress-bar-striped {
  24. @include gradient-striped();
  25. background-size: $progress-height $progress-height;
  26. }
  27. .progress-bar-animated {
  28. animation: progress-bar-stripes $progress-bar-animation-timing;
  29. }