twbs--bootstrap/scss/_progress.scss

33 lines
796 B
SCSS
Raw Normal View History

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; }
}
2011-11-26 18:41:17 +00:00
.progress {
display: flex;
2017-05-26 18:21:02 +00:00
height: $progress-height;
overflow: hidden; // force rounded corners by cropping it
font-size: $progress-font-size;
background-color: $progress-bg;
@include border-radius($progress-border-radius);
}
.progress-bar {
display: flex;
2017-11-06 17:57:25 +00:00
flex-direction: column;
2017-05-26 18:11:10 +00:00
justify-content: center;
color: $progress-bar-color;
2017-11-06 17:57:25 +00:00
text-align: center;
background-color: $progress-bar-bg;
@include transition($progress-bar-transition);
}
.progress-bar-striped {
2014-12-02 22:02:35 +00:00
@include gradient-striped();
background-size: $progress-height $progress-height;
}
.progress-bar-animated {
animation: progress-bar-stripes $progress-bar-animation-timing;
}