-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
67 lines (57 loc) · 1.04 KB
/
styles.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
body {
font-family: Arial, sans-serif;
padding: 20px;
}
.app {
display: flex;
flex-direction: column;
align-items: center;
}
.search-bar {
display: flex;
justify-content: center;
margin-bottom: 20px;
}
.search-bar input {
width: 300px;
padding: 10px;
margin-right: 10px;
border: 1px solid #ccc;
border-radius: 4px;
}
.search-bar button {
padding: 10px 20px;
border: none;
background-color: #007bff;
color: white;
border-radius: 4px;
cursor: pointer;
}
.results {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
}
.result-item {
display: flex;
align-items: center;
border: 1px solid #ccc;
border-radius: 4px;
padding: 10px;
width: 300px;
}
.result-item img {
border-radius: 50%;
width: 50px;
height: 50px;
margin-right: 20px;
}
.result-info h3 {
margin: 0;
font-size: 1.2em;
}
.result-info p {
margin: 5px 0 0;
color: #007bff;
}