PluginProbe
Easy Elements for Elementor – Addons & Website Templates / 1.2.8
Easy Elements for Elementor – Addons & Website Templates v1.2.8
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.css

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

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