PluginProbe
Easy Elements for Elementor – Addons & Website Templates / 1.3.6
Easy Elements for Elementor – Addons & Website Templates v1.3.6
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 / featured-image / css / featured-image.css

featured-image.css in Easy Elements for Elementor – Addons & Website Templates 1.3.6, at widgets/featured-image/css/featured-image.css

108 lines 2.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .eel-featured-image img {
2 width: 100%;
3 height: 100%;
4 -o-object-fit: cover;
5 object-fit: cover;
6 display: block;
7 }
8
9 .eel-featured-image-inner {
10 overflow: hidden;
11 }
12 .eel-featured-image-inner img {
13 display: block;
14 -o-object-fit: cover;
15 object-fit: cover;
16 }
17
18 .eel-featured-image-editor-preview {
19 box-shadow: none;
20 background: #f8fbff;
21 border: 1px dashed #0073e6;
22 border-radius: 14px;
23 position: relative;
24 }
25
26 .eel-featured-image-placeholder {
27 display: flex;
28 flex-direction: column;
29 align-items: center;
30 justify-content: center;
31 min-height: 240px;
32 width: 100%;
33 background: linear-gradient(135deg, #f8fbff 80%, #e3f0ff 100%);
34 border: 2.5px dashed #7fd7ff;
35 border-radius: 16px;
36 color: #0073e6;
37 padding: 40px 16px 32px 16px;
38 box-sizing: border-box;
39 text-align: center;
40 gap: 18px;
41 transition: box-shadow 0.2s, transform 0.2s;
42 }
43
44 .eel-featured-image-placeholder-icon {
45 display: block;
46 margin: 0 auto 10px auto;
47 filter: drop-shadow(0 2px 8px rgba(179, 212, 252, 0.2));
48 }
49
50 .eel-featured-image-placeholder-title {
51 font-size: 1.35rem;
52 font-weight: 700;
53 color: #0073e6;
54 opacity: 0.98;
55 letter-spacing: 0.5px;
56 margin-bottom: 2px;
57 }
58
59 .eel-featured-image-placeholder-desc {
60 font-size: 1rem;
61 color: #4a6fa1;
62 opacity: 0.85;
63 margin-bottom: 10px;
64 }
65
66 .eel-featured-image-placeholder-btn {
67 display: inline-block;
68 background: #000;
69 color: #fff;
70 font-size: 1rem;
71 font-weight: 600;
72 padding: 8px 22px;
73 border-radius: 22px;
74 text-decoration: none;
75 box-shadow: 0 2px 8px 0 rgba(0, 115, 230, 0.1333333333);
76 margin-top: 8px;
77 transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
78 border: none;
79 cursor: pointer;
80 pointer-events: none;
81 opacity: 0.85;
82 }
83
84 .eel-featured-image-editor-preview .eel-featured-image-placeholder-btn {
85 pointer-events: auto;
86 opacity: 1;
87 }
88
89 @media (max-width: 600px) {
90 .eel-featured-image-placeholder {
91 min-height: 140px;
92 padding: 18px 4px 12px 4px;
93 gap: 10px;
94 }
95 .eel-featured-image-placeholder-title {
96 font-size: 1.05rem;
97 }
98 .eel-featured-image-placeholder-desc {
99 font-size: 0.92rem;
100 }
101 .eel-featured-image-placeholder-btn {
102 font-size: 0.95rem;
103 padding: 7px 14px;
104 }
105 .eel-featured-image-img {
106 border-radius: 10px;
107 }
108 }