cssのみで 「録画・録音」 アイコンを作成してみました。しばらくはコントロール系を作ってみようと思います。
ソース
html
<div class="recording"></div>
css
/* 円 */ .recording { font-size: 100px; position: relative; width: 1.4em; height: 1.4em; border: 0.1em solid #39a9d6; border-radius: 100%; } /* マーク */ .recording::before { content: ""; position: absolute; top: 0.3em; left: 0.3em; width: 0.8em; height: 0.8em; background-color: #39a9d6; border-radius: 100%; }