PluginProbe
Easy Elements for Elementor – Addons & Website Templates / 1.5.3
Easy Elements for Elementor – Addons & Website Templates v1.5.3
1.5.3 1.5.2 1.5.1 1.5.0 1.4.9 1.4.6 1.4.7 1.4.8 1.4.5 1.4.4 1.4.3 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 All 47 releases
easy-elements / widgets / counter / css / counter.scss

counter.scss in Easy Elements for Elementor – Addons & Website Templates 1.5.3, at widgets/counter/css/counter.scss

133 lines 2.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 :root {
2 --e-global-color-primary: #FFD012;
3 --e-global-color-secondary: #0B3665;
4 }
5
6 .eel-cnt-wrap {
7 display: flex;
8 flex-direction: column;
9 align-items: center;
10 text-align: center;
11 }
12
13 .eel-cnt-number-wrap {
14 font-size: 70px;
15 font-weight: 600;
16 line-height: 1;
17 color: var(--e-global-color-secondary);
18 display: flex;
19 place-items: center;
20 }
21
22 .eel-cnt-title {
23 font-size: 16px;
24 font-weight: 400;
25 display: inline-block;
26 margin: 0;
27 }
28
29 .eel-cnt-icon {
30 place-items: center;
31 display: grid;
32 place-content: center;
33 }
34
35 .eel-cnt-icon svg {
36 width: 60px !important;
37 height: 60px !important;
38 fill: var(--e-global-color-secondary);
39 }
40
41 .eel-cnt-icon i {
42 font-size: 40px;
43 }
44
45 /* left */
46 .eel-cnt-icon-pos-left .eel-cnt-wrap {
47 flex-direction: row;
48 text-align: left;
49 justify-content: flex-start;
50 }
51 .eel-cnt-icon-pos-left .eel-cnt-icon {
52 margin-right: 12px;
53 }
54
55 /* right */
56 .eel-cnt-icon-pos-right .eel-cnt-wrap {
57 flex-direction: row-reverse;
58 text-align: right;
59 justify-content: flex-end;
60 }
61 .eel-cnt-icon-pos-right .eel-cnt-icon {
62 margin-left: 12px;
63 }
64
65 /* top */
66 .eel-cnt-icon-pos-top .eel-cnt-wrap {
67 flex-direction: column;
68 text-align: center;
69 }
70 .eel-cnt-icon-pos-top .eel-cnt-icon {
71 margin-bottom: 12px;
72 }
73
74 /* bottom */
75 .eel-cnt-icon-pos-bottom .eel-cnt-wrap {
76 flex-direction: column-reverse;
77 text-align: center;
78 }
79 .eel-cnt-icon-pos-bottom .eel-cnt-icon {
80 margin-top: 12px;
81 }
82
83 /* Title position (number vs title layout) */
84 .eel-cnt-content {
85 display: flex;
86 flex-direction: column;
87 }
88 .eel-cnt-title-pos-top .eel-cnt-content {
89 flex-direction: column-reverse;
90 }
91 .eel-cnt-title-pos-left .eel-cnt-content {
92 flex-direction: row-reverse;
93 align-items: center;
94 }
95 .eel-cnt-title-pos-right .eel-cnt-content {
96 flex-direction: row;
97 align-items: center;
98 }
99 .eel-cnt-title-pos-left .eel-cnt-title,
100 .eel-cnt-title-pos-right .eel-cnt-title {
101 margin-top: 0;
102 }
103
104 /* Odometer */
105 .eel-cnt-odometer-wrap {
106 display: inline-flex;
107 align-items: flex-end;
108 line-height: 1;
109 }
110 .eel-cnt-odometer-digit {
111 display: inline-block;
112 overflow: hidden;
113 height: 1em;
114 line-height: 1em;
115 vertical-align: bottom;
116 }
117 .eel-cnt-odometer-roll {
118 display: block;
119 will-change: transform;
120 }
121 .eel-cnt-odometer-num {
122 display: block;
123 height: 1em;
124 line-height: 1em;
125 }
126 .eel-cnt-odometer-sep {
127 display: inline-block;
128 line-height: 1em;
129 }
130
131
132
133