PluginProbe
Block Animations, Motion & Scroll Effects – Ghost Kit / 3.3.3
Block Animations, Motion & Scroll Effects – Ghost Kit v3.3.3
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 / countdown / styles / style.scss

style.scss in Block Animations, Motion & Scroll Effects – Ghost Kit 3.3.3, at gutenberg/blocks/countdown/styles/style.scss

54 lines 961 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * Frontend Styles
3 */
4 @import "./variables";
5
6 .ghostkit-countdown {
7 display: flex;
8 flex-wrap: wrap;
9
10 // Align.
11 &-units-align-left {
12 justify-content: flex-start;
13 }
14
15 &-units-align-center {
16 justify-content: center;
17 }
18
19 &-units-align-right {
20 justify-content: flex-end;
21 }
22
23 // Single unit.
24 &-unit {
25 flex: 0 0 auto;
26 min-width: var(--gkt-countdown--unit__min-width);
27 padding: var(--gkt-countdown--unit__padding-v) var(--gkt-countdown--unit__padding-h);
28 text-align: center;
29
30 span {
31 display: block;
32 }
33 }
34
35 // Unit number.
36 &-unit-number {
37 font-size: var(--gkt-countdown--unit-number__font-size);
38 font-weight: var(--gkt-countdown--unit-number__font-weight);
39 color: var(--gkt-countdown--unit-number__color);
40 }
41
42 // Unit label.
43 &-unit-label {
44 font-size: var(--gkt-countdown--unit-label__font-size);
45 color: var(--gkt-countdown--unit-label__color);
46 }
47
48 // Expire action.
49 &-expire-action {
50 display: none;
51 width: 100%;
52 }
53 }
54