-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
96 lines (86 loc) · 1.58 KB
/
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
body {
font-family: sans-serif;
}
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
#map {
height: 100vh;
width: 75%;
}
main {
display: flex;
}
.store-list{
width: 25%;
height: 100vh;
overflow: auto;
background-color: whitesmoke;
}
.store-list .heading{
background-color: #ff6900;
color: #fff;
}
.store-list .heading h2{
padding: 1rem
}
::-webkit-scrollbar{
width: 3px;
height: 3px;
border-left: 0;
background-color: rgba( 0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb{
background-color: #ff6900;
border-radius: 0;
}
.store-list ul.list{
padding: 0 1rem;
list-style-type: none;
}
.store-list .shop-item{
margin: 1rem;
border-bottom: 1px solid rgba( 0, 0, 0, 0.1);
padding-bottom: 1rem;
}
.store-list li:last-child{
border: none;
}
.store-list .shop-item a{
text-decoration: none;
font-size: 20px;
color: #ff6900;
font-weight: 700;
}
.store-list .shop-item p{
font-size: 14px;
color: #404040;
}
.leaflet-popup-content-wrapper {
padding: 0;
overflow: hidden;
}
.leaflet-popup-content-wrapper .leaflet-popup-content {
margin: 0;
}
.leaflet-popup-content-wrapper h4{
padding: 16px;
background-color: #ff6900;
color: #fff;
font-size: 16px;
}
.leaflet-popup-content-wrapper p{
padding: 0 16px;
font-size: 14px;
margin-bottom: 14px;
}
.leaflet-popup-content-wrapper .leaflet-popup-content .phone-number{
padding: 16px;
padding-top: 0;
}
.leaflet-popup-content-wrapper .leaflet-popup-content .phone-number a{
color: #ff6900;
font-size: 14px;
}