| 1 |
/** |
| 2 |
* Block Variables |
| 3 |
*/ |
| 4 |
@import "../../../variables"; |
| 5 |
|
| 6 |
.ghostkit-progress { |
| 7 |
--gkt-progress__height: 15px; |
| 8 |
--gkt-progress__border-radius: var(--gkt-border-radius); |
| 9 |
--gkt-progress__background-color: var(--gkt-color-light-gray); |
| 10 |
|
| 11 |
// Caption. |
| 12 |
--gkt-progress--caption__margin-bottom: 0.3em; |
| 13 |
--gkt-progress--caption__font-size: 0.85em; |
| 14 |
|
| 15 |
// Count. |
| 16 |
--gkt-progress--count__padding-v: 0.1em; |
| 17 |
--gkt-progress--count__padding-h: 0.7em; |
| 18 |
--gkt-progress--count__font-size: 0.6em; |
| 19 |
--gkt-progress--count__border-radius: 1em; |
| 20 |
--gkt-progress--count__color: #fff; |
| 21 |
--gkt-progress--count__background-color: var(--gkt-color-dark-gray); |
| 22 |
--gkt-progress--count-arrow__size: 0.35em; |
| 23 |
|
| 24 |
// Bar. |
| 25 |
--gkt-progress--bar__width: 0; |
| 26 |
--gkt-progress--bar__background-color: var(--gkt-color-primary); |
| 27 |
--gkt-progress--bar-striped__background-image: linear-gradient(45deg, rgba(255, 255, 255, 10%) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 10%) 50%, rgba(255, 255, 255, 10%) 75%, transparent 75%, transparent); |
| 28 |
--gkt-progress--bar-striped__background-size: 15px 15px; |
| 29 |
|
| 30 |
// Transitions. |
| 31 |
--gkt-progress__transition-duration: var(--gkt-transition-duration); |
| 32 |
--gkt-progress__transition-easing: var(--gkt-transition-easing); |
| 33 |
} |
| 34 |
|