PluginProbe
Easy Elements for Elementor – Addons & Website Templates / 1.2.7
Easy Elements for Elementor – Addons & Website Templates v1.2.7
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 / pricing-table / css / pricing.scss

pricing.scss in Easy Elements for Elementor – Addons & Website Templates 1.2.7, at widgets/pricing-table/css/pricing.scss

167 lines 3.0 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 .elementor-widget-eel-pricing > .elementor-widget-container{
7 position: relative;
8 border: 1px solid #eeeeeeb8;
9 padding: 30px;
10 border-radius: 16px;
11 overflow: hidden;
12 box-shadow: 0 5px 16px #00000005;
13 background: #fff;
14 }
15
16 .eel-price-title {
17 margin-bottom: 15px;
18 }
19
20 .eel-price {
21 font-size: 36px;
22 margin-bottom: 20px;
23 }
24
25 .eel-price .eel-period {
26 font-size: 14px;
27 margin-left: 5px;
28 }
29
30 .eel-features {
31 list-style: none;
32 padding: 0;
33 margin: 0 0 20px 0;
34 }
35
36 .eel-features li {
37 padding: 10px 0;
38 display: flex;
39 align-items: center;
40 }
41
42 .eel-features li+li {
43 border-top: 1px solid #eeeeeed9;
44 }
45 .eel-btn-part .eel-button {
46 display: inline-flex;
47 align-items: center;
48 justify-content: center;
49 text-decoration: none;
50 padding: 10px 26px;
51 background-color: var(--e-global-color-primary);
52 color: #fff;
53 border-radius: 6px;
54 transition: all 0.3s ease;
55 &.eel--full-btn{
56 display: block;
57 }
58 }
59 .eel-button svg{
60 width: 16px;
61 height: 16px;
62 }
63
64 /* Ribbon styles */
65 .eel-ribbon {
66 position: absolute;
67 top: 0;
68 padding: 3px 15px;
69 background: var(--e-global-color-secondary);
70 color: #fff;
71 width: 100%;
72 left: 0;
73 border-radius: 16px 16px 0 0;
74 text-align: center;
75 }
76
77 .eel-old-price {
78 text-decoration: line-through;
79 margin-right: 8px;
80 font-size: 22px;
81 font-weight: 400;
82 }
83
84 .eel-sale-price {
85 color: var(--e-global-color-primary);
86 font-size: 36px;
87 }
88
89 .eel-features li svg.feature-icon,
90 .eel-features li .feature-icon i {
91 margin-right: 10px;
92 color: var(--e-global-color-primary);
93 font-size: 18px;
94 width: 22px;
95 height: 22px;
96 text-align: center;
97 vertical-align: middle;
98 }
99
100
101 .eel-features svg.feature-icon.icon-bg,
102 .eel-features svg.feature-icon.icon-border{
103 width: 36px;
104 height: 36px;
105 }
106
107
108 .eel-button-subtext {
109 margin-top: 8px;
110 font-size: 14px;
111 }
112
113
114 .eel-features .feature-icon {
115 font-size: 16px;
116 display: inline-flex;
117 align-items: center;
118 justify-content: center;
119 margin-right: 8px;
120 line-height: 1;
121 }
122
123
124 .feature-icon.icon-bg {
125 background-color: #f1f1f1;
126 color: var(--e-global-color-secondary);
127 padding: 5px;
128 border-radius: 50%;
129 }
130
131 li.icon-bg svg{
132 width: 16px;
133 height: 16px;
134 margin-right: 10px;
135 }
136
137 .feature-icon.icon-border {
138 border: 1px solid #ccc;
139 padding: 5px;
140 border-radius: 50%;
141 }
142
143
144 .featured.style2{
145 .eel-ribbon{
146 position: absolute;
147 background: var(--e-global-color-secondary);
148 color: #fff;
149 top: 22px;
150 right: -60px;
151 z-index: 10;
152 -webkit-transform: rotate(45deg);
153 -ms-transform: rotate(45deg);
154 transform: rotate(45deg);
155 width: 200px;
156 padding: 4px 0;
157 white-space: nowrap;
158 left: auto;
159 &.eel-left{
160 left: -60px;
161 -webkit-transform: rotate(-45deg);
162 -ms-transform: rotate(-45deg);
163 transform: rotate(-45deg);
164 right: auto;
165 }
166 }
167 }