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 / process-grid / css / process.scss

process.scss in Easy Elements for Elementor – Addons & Website Templates 1.5.0, at widgets/process-grid/css/process.scss

111 lines 2.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: #EAA638;
3 --e-global-color-secondary: #0B3665;
4 --e-global-color-text: #7A8986;
5 }
6 .eel-icon-box-wrap .grid-wrap {
7 display: flex;
8 flex-wrap: wrap;
9 }
10
11 .eel-icon-box-wrap .eel-icon-item {
12 display: flex;
13 flex-wrap: wrap;
14 }
15 .eel-icon-box-wrap .eel-icon-item{
16 box-sizing: border-box;
17 padding: 15px;
18 }
19 .eel-icon-box-wrap .eel-icon-item .ee--icon-box{
20 box-sizing: border-box;
21 position: relative;
22 }
23 .eel-icon-box-wrap .ee--icon-box {
24 padding: 32px;
25 }
26
27 .eel-icon-box-wrap .ee--icon-box {
28 max-width: 100%;
29 height: auto;
30 display: block;
31 margin: 0 auto;
32 border-radius: 16px;
33 background: #FFFFFF;
34 border: 1px solid rgba(0, 0, 0, 0.15);
35 box-shadow: 0px 24px 48px -24px rgba(0, 0, 0, 0.16);
36 }
37
38 .eel-process-number{
39 position: absolute;
40 bottom: 10px;
41 right: 26px;
42 font-weight: 400;
43 font-size: 80px;
44 line-height: 90%;
45 letter-spacing: -0.02em;
46 background: linear-gradient(180deg, var(--e-global-color-primary) 0%, rgba(255, 255, 255, 0.24) 100%);
47 -webkit-background-clip: text;
48 -webkit-text-fill-color: transparent;
49 background-clip: text;
50 text-fill-color: transparent;
51 opacity: .5;
52 }
53
54 .ee--icon-box{
55 width: 100%;
56 svg{
57 height: 1em;
58 }
59 .icon-box-title{
60 color: var(--e-global-color-secondary);
61 margin-bottom: 14px;
62 a{
63 color: currentColor;
64 }
65 }
66 .eel-icon{
67 min-width: 60px;
68 height: 60px;
69 background: var(--e-global-color-primary);
70 display:inline-grid;
71 place-content: center;
72 margin: 0 auto 40px;
73 border-radius: 16px;
74 font-size: 20px;
75 }
76 .icon-box-description{
77 font-size: 18px;
78 color: var(--e-global-color-text);
79 a{
80 color: currentColor;
81 }
82 }
83 &.right,
84 &.left{
85 display: flex;
86 gap: 20px;
87 .eel-icon{
88 margin-bottom: 0;
89 margin-top: 4px;
90 }
91 }
92 &.left{
93 .eel-process-number{
94 bottom: unset;
95 top: 15px;
96 opacity: 1;
97 }
98 }
99 &.right{
100 .eel-icon{
101 order: 2;
102 }
103 .eel-process-number {
104 left: 26px;
105 right: auto;
106 bottom: 18px;
107 opacity: 1;
108 }
109 }
110 }
111