cssのみで 「フォーク・ナイフ」 アイコンを作成してみました。
ソース
html
<div class="cutlery"></div>
css
/* フォーク */
.cutlery {
font-size: 100px;
position: relative;
margin: 0.1em 0 0 0.3em;
width: 0.1em;
height: 0.6em;
background-color:#39a9d6;
border-radius: 0.1em;
box-shadow:
0.15em 0 0 0 #39a9d6,
0.3em 0 0 0 #39a9d6
;
}
/* 柄 */
.cutlery::before {
content: "";
position: absolute;
top: 0.5em;
left: 0.05em;
width: 0.3em;
height: 0.9em;
background-color:#39a9d6;
border-radius: 0 0 0.1em 0.1em;
box-shadow: 0.7em 0 0 0 #39a9d6;
}
/* ナイフ */
.cutlery::after {
content: "";
position: absolute;
top: 0.;
left: 0.55em;
width: 0.5em;
height: 0.9em;
background-color:#39a9d6;
border-radius: 0.5em 0.1em 0.1em 0.1em;
}

