-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
95 lines (76 loc) · 1.31 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/* Body styles */
body {
background-color: #f1f3f4;
font-family: Arial, sans-serif;
margin: 1;
padding: 0;
}
#engine-select {
width: 150px;
border: none;
background: none;
outline: none;
padding: 5px;
}
/* Main styles */
main {
background-color: #f1f3f4;
height: 100%;
padding: 50px 0;
align-items: center;
justify-content: center;
}
.logo-container {
display: flex;
justify-content: center;
}
.search-container {
display: flex;
justify-content: center;
margin-top: 50px;
}
.input-box {
background-color: white;
justify-content: space-between;
border-radius: 25px;
display: flex;
padding: 10px;
width: 80%;
}
#search {
border: none;
font-size: 18px;
padding: 5px;
width: 90%;
}
button {
background-color: #4285f4;
border: none;
border-radius: 25px;
color: white;
font-size: 18px;
padding: 10px 20px;
}
button:hover {
background-color: #357ae8;
cursor: pointer;
}
/* Responsive styles */
@media (max-width: 768px) {
.input-box {
width: 100%;
}
}
@media (min-width:801px) {
}
.mx-auto {
margin-right: auto !important;
margin-left: auto !important;
}
.d-block {
display: block !important;
}
.img-fluid {
max-width: 100%;
height: auto;
}