-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
52 lines (45 loc) · 872 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
50
51
52
body {
font-family: sans-serif;
display: flex;
flex-direction: column;
align-items: center;
margin-top: 50px;
}
.input-container {
display: flex;
flex-direction: column;
margin-bottom: 20px;
}
.input-container label {
margin-bottom: 5px;
}
.input-container input {
margin-bottom: 10px;
padding: 8px;
}
#results-container {
margin-top: 20px;
border: 1px solid #ccc;
padding: 10px;
width: 80%;
text-align: center;
}
#recent-stations-list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
#recent-stations-list li {
background-color: #f0f0f0;
border: 1px solid #ccc;
border-radius: 5px;
padding: 5px 10px;
margin: 5px;
cursor: pointer;
}
#recent-stations-list li:hover {
background-color: #e0e0e0;
}