-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
51 lines (44 loc) · 781 Bytes
/
App.css
File metadata and controls
51 lines (44 loc) · 781 Bytes
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
.app {
text-align: center;
padding: 20px;
}
.search-bar {
margin-bottom: 20px;
align-items: center;
justify-content: center;
}
.search-bar input {
padding: 10px;
width: 300px;
font-size: 16px;
border-radius: 4px;
border: 1px solid #ccc;
}
.suggestions-list {
list-style: none;
padding: 0;
margin: 0;
border: 1px solid #ccc;
width: 300px;
margin-top: 5px;
position: absolute;
background-color: white;
}
.suggestions-list li {
padding: 10px;
cursor: pointer;
}
.suggestions-list li:hover {
background-color: #f0f0f0;
}
.country-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 20px;
}
.country-item {
padding: 20px;
border: 1px solid #ddd;
border-radius: 8px;
text-align: left;
}