PluginProbe
Easy Elements for Elementor – Addons & Website Templates / 1.2.9
Easy Elements for Elementor – Addons & Website Templates v1.2.9
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.2.9, at widgets/counter/css/counter.css

84 lines 1.4 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 }
33
34 .eel-cnt-icon svg {
35 width: 60px !important;
36 height: 60px !important;
37 fill: var(--e-global-color-secondary);
38 }
39
40 .eel-cnt-icon i {
41 font-size: 40px;
42 }
43
44 /* left */
45 .eel-cnt-icon-pos-left .eel-cnt-wrap {
46 flex-direction: row;
47 text-align: left;
48 justify-content: flex-start;
49 }
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
62 .eel-cnt-icon-pos-right .eel-cnt-icon {
63 margin-left: 12px;
64 }
65
66 /* top */
67 .eel-cnt-icon-pos-top .eel-cnt-wrap {
68 flex-direction: column;
69 text-align: center;
70 }
71
72 .eel-cnt-icon-pos-top .eel-cnt-icon {
73 margin-bottom: 12px;
74 }
75
76 /* bottom */
77 .eel-cnt-icon-pos-bottom .eel-cnt-wrap {
78 flex-direction: column-reverse;
79 text-align: center;
80 }
81
82 .eel-cnt-icon-pos-bottom .eel-cnt-icon {
83 margin-top: 12px;
84 }