PluginProbe
Block Animations, Motion & Scroll Effects – Ghost Kit / 3.7.0
Block Animations, Motion & Scroll Effects – Ghost Kit v3.7.0
3.7.2 3.7.1 3.7.0 3.6.1 trunk 1.6.3 2.25.0 3.3.0 3.3.1 3.3.2 3.3.3 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.4.6 3.5.0 3.5.1 3.6.0
ghostkit / gutenberg / blocks / progress / styles / variables.scss

variables.scss in Block Animations, Motion & Scroll Effects – Ghost Kit 3.7.0, at gutenberg/blocks/progress/styles/variables.scss

34 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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