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.css

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

141 lines 2.5 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
52 .eel-cnt-icon-pos-left .eel-cnt-icon {
53 margin-right: 12px;
54 }
55
56 /* right */
57 .eel-cnt-icon-pos-right .eel-cnt-wrap {
58 flex-direction: row-reverse;
59 text-align: right;
60 justify-content: flex-end;
61 }
62
63 .eel-cnt-icon-pos-right .eel-cnt-icon {
64 margin-left: 12px;
65 }
66
67 /* top */
68 .eel-cnt-icon-pos-top .eel-cnt-wrap {
69 flex-direction: column;
70 text-align: center;
71 }
72
73 .eel-cnt-icon-pos-top .eel-cnt-icon {
74 margin-bottom: 12px;
75 }
76
77 /* bottom */
78 .eel-cnt-icon-pos-bottom .eel-cnt-wrap {
79 flex-direction: column-reverse;
80 text-align: center;
81 }
82
83 .eel-cnt-icon-pos-bottom .eel-cnt-icon {
84 margin-top: 12px;
85 }
86
87 /* Title position (number vs title layout) */
88 .eel-cnt-content {
89 display: flex;
90 flex-direction: column;
91 }
92
93 .eel-cnt-title-pos-top .eel-cnt-content {
94 flex-direction: column-reverse;
95 }
96
97 .eel-cnt-title-pos-left .eel-cnt-content {
98 flex-direction: row-reverse;
99 align-items: center;
100 }
101
102 .eel-cnt-title-pos-right .eel-cnt-content {
103 flex-direction: row;
104 align-items: center;
105 }
106
107 .eel-cnt-title-pos-left .eel-cnt-title,
108 .eel-cnt-title-pos-right .eel-cnt-title {
109 margin-top: 0;
110 }
111
112 /* Odometer */
113 .eel-cnt-odometer-wrap {
114 display: inline-flex;
115 align-items: flex-end;
116 line-height: 1;
117 }
118
119 .eel-cnt-odometer-digit {
120 display: inline-block;
121 overflow: hidden;
122 height: 1em;
123 line-height: 1em;
124 vertical-align: bottom;
125 }
126
127 .eel-cnt-odometer-roll {
128 display: block;
129 will-change: transform;
130 }
131
132 .eel-cnt-odometer-num {
133 display: block;
134 height: 1em;
135 line-height: 1em;
136 }
137
138 .eel-cnt-odometer-sep {
139 display: inline-block;
140 line-height: 1em;
141 }