37 lines
675 B
CSS
37 lines
675 B
CSS
.marker-pin {
|
|
width: 30px;
|
|
height: 30px;
|
|
border-radius: 50% 50% 50% 0;
|
|
background: #c30b82;
|
|
position: absolute;
|
|
transform: rotate(-45deg);
|
|
left: 50%;
|
|
top: 50%;
|
|
margin: -15px 0 0 -15px;
|
|
}
|
|
|
|
.marker-pin::after {
|
|
content: '';
|
|
width: 24px;
|
|
height: 24px;
|
|
margin: 3px 0 0 3px;
|
|
background: #fff;
|
|
position: absolute;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.custom-div-icon i {
|
|
position: absolute;
|
|
width: 12px;
|
|
font-size: 12px;
|
|
left: 0;
|
|
right: 0;
|
|
margin: 12px auto;
|
|
text-align: center;
|
|
}
|
|
|
|
.custom-div-icon i.awesome {
|
|
margin: 8px auto;
|
|
font-size: 12px;
|
|
}
|
|
|