twbs--bootstrap/scss/_progress.scss

38 lines
862 B
SCSS
Raw Normal View History

// Progress animations
2011-11-26 18:41:17 +00:00
@keyframes progress-bar-stripes {
from { background-position: $progress-height 0; }
2016-02-06 20:28:18 +00:00
to { background-position: 0 0; }
}
// Basic progress bar
2011-11-26 18:41:17 +00:00
.progress {
display: flex;
align-items: center;
overflow: hidden; // force rounded corners by cropping it
font-size: $progress-font-size;
height: $progress-height;
line-height: $progress-height;
background-color: $progress-bg;
@include border-radius($progress-border-radius);
}
.progress-bar {
display: flex;
align-items: center;
2017-05-26 18:11:10 +00:00
justify-content: center;
height: 100%;
color: $progress-bar-color;
background-color: $progress-bar-bg;
}
// Striped
.progress-bar-striped {
2014-12-02 22:02:35 +00:00
@include gradient-striped();
background-size: $progress-height $progress-height;
}
// Animated
.progress-bar-animated {
animation: progress-bar-stripes $progress-bar-animation-timing;
}