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

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