39 lines
550 B
CSS
39 lines
550 B
CSS
@charset "UTF-8";
|
|
|
|
i.icon.pin {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
margin-top: -4px;
|
|
width: 18px;
|
|
height: 18px;
|
|
display: block;
|
|
border: 2px solid;
|
|
border-radius: 100% 100% 0 100%;
|
|
transform: rotate(45deg);
|
|
}
|
|
|
|
i.icon.pin.small {
|
|
width: 15px;
|
|
height: 15px;
|
|
}
|
|
|
|
i.icon.pin::before {
|
|
content: "";
|
|
position: absolute;
|
|
left: 3px;
|
|
top: 3px;
|
|
width: 8px;
|
|
height: 8px;
|
|
display: block;
|
|
box-sizing: border-box;
|
|
border: 2px solid;
|
|
border-radius: 40px;
|
|
}
|
|
|
|
i.icon.pin.small::before {
|
|
top: 2px;
|
|
left: 2px;
|
|
width: 7px;
|
|
height: 7px;
|
|
}
|