Spaces:
Runtime error
Runtime error
File size: 519 Bytes
72c8f1c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
.progress {
display: flex;
height: 100px;
border-radius: 4px;
.bar {
flex: 1 1 1px;
height: 100px;
transition: flex-basis .2s ease-out;
display: flex;
justify-content: center;
align-items: center;
.label {
color: #fff;
font-size: 1rem;
}
@each $i in $color-blocks {
$index: index($color-blocks, $i);
$color: nth($color-blocks, $index);
&:nth-child(#{$index}) {
background-color: $color;
}
}
}
}
|