_progress.scss 837 Bytes
Newer Older
Piotrek Okoński's avatar
Piotrek Okoński committed
1
@keyframes progress-bar-stripes {
2
  from { background-position: $progress-height 0; }
Mark Otto's avatar
Mark Otto committed
3
  to { background-position: 0 0; }
4
5
}

Piotrek Okoński's avatar
Piotrek Okoński committed
6
.progress {
7
  display: flex;
8
  overflow: hidden; // force rounded corners by cropping it
9
10
11
  font-size: $progress-font-size;
  line-height: $progress-height;
  text-align: center;
12
  background-color: $progress-bg;
13
  @include border-radius($progress-border-radius);
14
  @include box-shadow($progress-box-shadow);
15
}
Mark Otto's avatar
Mark Otto committed
16

17
18
.progress-bar {
  height: $progress-height;
Mark Otto's avatar
Mark Otto committed
19
  line-height: $progress-height;
20
21
  color: $progress-bar-color;
  background-color: $progress-bar-bg;
Mark Otto's avatar
Mark Otto committed
22
  @include transition($progress-bar-transition);
23
24
}

25
.progress-bar-striped {
Mark Otto's avatar
Mark Otto committed
26
  @include gradient-striped();
27
  background-size: $progress-height $progress-height;
28
}
29

30
31
.progress-bar-animated {
  animation: progress-bar-stripes $progress-bar-animation-timing;
32
}