| DIR: /home/aissorg/public_html/fonts/qzfcvsedcv/werwcwsfs /home/aissorg/public_html/fonts/qzfcvsedcv/werwcwsfs/ |
| Current File : /home/aissorg/public_html/fonts/qzfcvsedcv/werwcwsfs/_progress-bars.scss.tar |
home/aissorg/public_html/scss/custom-styles/plugins/_progress-bars.scss 0000644 00000002145 15116256400 0022563 0 ustar 00 /*
*
* Progress Bars
*/
//
// Linear Progress Bars
//
.progress-linear {
position: relative;
text-align: left;
.progress-header {
display: flex;
align-items: center;
justify-content: space-between;
@include spacing(10px);
}
.progress-bar-linear-wrap {
height: 2px;
background: $gray-100;
}
.progress-bar-linear {
width: 0;
height: inherit;
background: $primary;
transition: .5s all ease-in-out;
}
.progress-value {
&::after {
content: '\0025';
}
}
}
* + .progress-linear { margin-top: 25px; }
* + .progress-linear-outer { margin-top: 25px; }
* + .progress-bar-linear-wrap { margin-top: 8px; }
.progress-linear + .progress-linear { margin-top: 20px; }
.progress-linear-outer + .progress-linear-outer { margin-top: 20px; }
@include media-breakpoint-up(md) {
* + .progress-linear { margin-top: 40px; }
* + .progress-linear-outer { margin-top: 40px; }
}
@include media-breakpoint-up(xl) {
.progress-linear + .progress-linear { margin-top: 34px; }
.progress-linear-outer + .progress-linear-outer { margin-top: 34px; }
}
|