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 / featured-image / css / featured-image.scss

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

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