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

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

84 lines 1.8 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 .elementor-widget-eel-process-list > .elementor-widget-container {
7 max-width: 100%;
8 height: auto;
9 display: block;
10 margin: 0 auto;
11 background: #F6F4F0;
12 padding: 64px;
13 }
14
15
16 .eel--process-list{
17 display: inline-flex;
18 align-items: center;
19 gap: 64px;
20 svg{
21 height: 64px;
22 }
23 @media screen and (max-width: 767px) {
24 flex-wrap: wrap;
25 }
26 @media screen and (max-width: 575px) {
27 flex-wrap: wrap;
28 gap: 30px;
29 }
30
31 .icon-box-title{
32 color: var(--e-global-color-secondary);
33 margin-bottom: 14px;
34 a{
35 color: currentColor;
36 }
37 span{
38 font-size: 16px;
39 color: var(--e-global-color-text);
40 }
41 }
42
43 .eel-process-icon{
44 width: 128px;
45 min-width: 128px;
46 height: 128px;
47 box-shadow: 0px 4px 10px -5px rgba(0, 0, 0, 0.15);
48 background: #fff;
49 display:inline-grid;
50 place-content: center;
51 margin: 0;
52 font-size: 20px;
53 padding: 22px;
54 }
55 .eel-pro-number{
56 flex: 0 0 70px;
57 max-width: 70px;
58 }
59 .icon-box-description{
60 color: var(--e-global-color-text);
61 a{
62 color: currentColor;
63 }
64 }
65 }
66
67 .eel-pro-number{
68 font-weight: 400;
69 font-size: 64px;
70 line-height: 100%;
71 text-align: center;
72 letter-spacing: -0.03em;
73 }
74
75
76 @media screen and (max-width: 767px) {
77 .eel--process-list{
78 display: -ms-inline-grid;
79 display: inline-grid;
80 }
81 .eel-pro-number{
82 text-align:left;
83 }
84 }