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

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

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