-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
50 lines (50 loc) · 775 Bytes
/
styles.css
File metadata and controls
50 lines (50 loc) · 775 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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: #f8f9fa;
}
header {
background: #007BFF;
color: white;
padding: 1rem;
text-align: center;
}
#map {
height: 400px;
margin: 1rem;
}
form {
display: flex;
flex-direction: column;
margin: 1rem;
}
form input, form button {
margin: 0.5rem 0;
padding: 0.5rem;
}
#listings div {
background: white;
border: 1px solid #ccc;
padding: 0.75rem;
margin: 0.5rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
transition: transform 0.2s ease;
}
#listings div:hover {
transform: scale(1.02);
}
footer {
text-align: center;
padding: 1rem;
background: #ddd;
}
@media (max-width: 600px) {
form {
padding: 0.5rem;
}
#map {
height: 300px;
}
}