-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
50 lines (42 loc) · 666 Bytes
/
app.css
File metadata and controls
50 lines (42 loc) · 666 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
h1 {
text-align: center;
}
#map {
width: 100%;
height: 500px;
border: 2px solid black;
}
#sidebar {
max-width: 300px;
background: #f4f4f4;
overflow-y: auto;
padding: 10px;
margin: 10px;
border: 5px solid black;
}
#searchInput {
max-width: 100%;
padding: 5px 10px;
margin-bottom: 10px;
font-size: 1em;
}
.pin-item {
background: white;
margin-bottom: 10px;
padding: 10px;
border-radius: 5px;
cursor: pointer;
}
.pin-item:hover {
background: #eaeaea;
}
.edit,
.delete {
cursor: pointer;
}
.edit:hover {
background-color: aqua;
}
.delete:hover {
background-color: red;
}