cssのみで 「マイク」 アイコンを作成してみました。微妙な感じになってしまいました・・・
ソース
html
<div class="microphone"></div>
css
/* 円 */ .microphone { font-size: 100px; position: relative; width: 0.6em; height: 1.1em; background-color: #39a9d6; border-radius: 0.3em; } /* U */ .microphone::before { content: ""; position: absolute; top: 0.5em; left: -0.2em; width: 0.8em; height: 0.7em; border-left: 0.1em solid #39a9d6; border-right: 0.1em solid #39a9d6; border-bottom: 0.1em solid #39a9d6; border-radius: 0 0 0.5em 0.5em; } /* 下 */ .microphone::after { content: ""; position: absolute; top: 0; left: 0; width: 1.6em; height: 1.6em; background: linear-gradient(to bottom, #39a9d6 0%, #39a9d6 100%) 0.25em 1.2em, linear-gradient(to bottom, #39a9d6 0%, #39a9d6 100%) 0 1.5em ; background-size: 0.1em 0.4em, 0.6em 0.1em ; background-repeat: no-repeat; }