虫眼鏡のアイコン
虫眼鏡のアイコン。
Source Code
右上の「コピー」からご利用ください。
コピー
<div class="my-parts"><span></span></div>
コピー
.my-parts {
display: inline-block;
width: 50px;
height: 50px;
font-size: 50px;
position: relative;
box-shadow: 0 0 0 1px rgba(0,0,0,.1);
cursor: pointer;
}
.my-parts span {
position: absolute;
display: block;
top: 50%;
left: 50%;
width: 56%;
height: 56%;
border-radius: 50%;
margin: -.28em 0 0 -.28em;
border: .12em solid #673AB7;
}
.my-parts span::after {
position: absolute;
display: block;
content: "";
top: 50%;
left: 50%;
width: 72%;
height: 36%;
background: #673AB7;
margin: .2em 0 0 .14em;
transform: rotate(45deg);
}