25 lines
628 B
SCSS
25 lines
628 B
SCSS
.loading-bar {
|
|
align-items: stretch;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
.item {
|
|
animation-duration: 5s;
|
|
animation-iteration-count: infinite;
|
|
animation-name: loadBar;
|
|
animation-timing-function: ease-in;
|
|
background: $gray;
|
|
flex: 1;
|
|
height: 5px;
|
|
}
|
|
|
|
$colors-list: #bbe831 #237400 #e43050 #810061 #618000;
|
|
@each $current-color in $colors-list {
|
|
$i: index($colors-list, $current-color) - 1;
|
|
.item-#{$i} {
|
|
animation-delay: #{$i}s;
|
|
background: $current-color;
|
|
}
|
|
}
|
|
}
|