PluginProbe
Easy Elements for Elementor – Addons & Website Templates / 1.3.0
Easy Elements for Elementor – Addons & Website Templates v1.3.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 / domain-search / css / domain-search.scss

domain-search.scss in Easy Elements for Elementor – Addons & Website Templates 1.3.0, at widgets/domain-search/css/domain-search.scss

57 lines 1.3 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 .eel-domain-search{
7 form {
8 display: flex;
9 width: 100%; /* or set a fixed width like 400px */
10 border: none;
11 overflow: hidden;
12 gap: 16px;
13 position: relative;
14 @media screen and (max-width: 575px) {
15 flex-wrap: wrap;
16 justify-content: center;
17 }
18 }
19
20 .unicon-search{
21 position: absolute;
22 left: 16px;
23 top: 50%;
24 font-size: 22px;
25 transform: translateY(-50%);
26 @media screen and (max-width: 575px) {
27 top: 20%;
28 }
29 }
30
31 /* Input field styling */
32 form input[type="text"]="text""] {
33 flex: 1; /* take up remaining space */
34 padding: 16px 16px 16px 40px;
35 border: none;
36 outline: none;
37 font-size: 16px;
38 border-radius: 16px;
39 width: 500px;
40 }
41
42 /* Button styling */
43 form button {
44 padding: 18px 32px;
45 background-color: var(--e-global-color-primary);
46 color: #fff;
47 border: none;
48 cursor: pointer;
49 font-size: 16px;
50 transition: background-color 0.3s;
51 border-radius: 16px;
52 @media screen and (max-width: 575px) {
53 width: 100%;
54 }
55 }
56 }
57