/* ###### Progress ###### */ .progress-bar-xs { height: 5px; } .progress-bar-sm { height: 8px; } .progress-bar-lg { height: 15px; } .progress { display: flex; height: 10px; overflow: hidden; font-size: 0.65625rem; background-color: $background; border-radius: 3px; } @keyframes progress-bar-stripes { from { background-position: 1rem 0; } to { background-position: 0 0; } } .progress-bar { display: flex; flex-direction: column; justify-content: center; color: $white; text-align: center; white-space: nowrap; transition: width 0.6s ease; border-radius: 10px; font-size: 11px; height: 10px; font-size: 11px; } @media (prefers-reduced-motion: reduce) { .progress-bar { transition: none; } } .progress-bar-striped { background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-size: 1rem 1rem; } .progress-bar-animated { animation: progress-bar-stripes 1s linear infinite; } @media (prefers-reduced-motion: reduce) { .progress-bar-animated { animation: none; } } /* ###### Progress ###### */