PluginProbe
Block Animations, Motion & Scroll Effects – Ghost Kit / 2.25.0
Block Animations, Motion & Scroll Effects – Ghost Kit v2.25.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 / _css-variables.scss

_css-variables.scss in Block Animations, Motion & Scroll Effects – Ghost Kit 2.25.0, at gutenberg/_css-variables.scss

28 lines 681 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * Global CSS Variables
3 */
4 :root {
5 // Main colors.
6 --gkt-color-brand: #{$color-brand};
7 --gkt-color-dark-gray: #{$color-dark-gray};
8 --gkt-color-light-gray: #{$color-light-gray};
9 --gkt-color-light-gray-darken: #{$color-light-gray-darken};
10
11 // Additional colors.
12 --gkt-color-primary: #{$color-primary};
13 --gkt-color-success: #{$color-success};
14 --gkt-color-danger: #{$color-danger};
15 --gkt-color-warning: #{$color-warning};
16 --gkt-color-info: #{$color-info};
17
18 // Radius.
19 --gkt-border-radius: 5px;
20
21 // Blocks Bottom Margin.
22 --gkt-blocks-margin-bottom: 28px;
23
24 // Transitions.
25 --gkt-transition-duration: 0.2s;
26 --gkt-transition-easing: ease-in-out;
27 }
28