-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
49 lines (49 loc) · 964 Bytes
/
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
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f0f0f0;
margin: 0;
}
.search-container {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}
input[type="text"] {
padding: 10px;
width: 300px;
font-size: 16px;
}
input[type="button"] {
padding: 10px;
font-size: 16px;
cursor: pointer;
background-color: #2289CD;
color: white;
border: none;
border-radius: 5px;
transition: background-color 0.3s;
}
input[type="button"]:hover {
background-color: #339ce1;
}
input[type="submit"] {
padding: 10px;
font-size: 16px;
cursor: pointer;
background-color: #2289CD;
color: white;
border: none;
border-radius: 5px;
transition: background-color 0.3s;
}
input[type="submit"]:hover {
background-color: #339ce1;
}
#results {
margin-top: 20px;
}