フラッグのアイコン
フラッグのアイコン。
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: 84%;
height: 56%;
margin: -28% 0 0 -42%;
background: #F44336;
}
.my-parts span::after {
position: absolute;
display: block;
content: "";
top: 50%;
left: 50%;
width: 0;
height: 0;
background: #F44336;
margin: 0 0 0 -50%;
border-bottom: .28em solid #fff;
border-left: .42em solid transparent;
border-right: .42em solid transparent;
}