cssのみで 一時停止 アイコンを作成してみました。しばらくはコントロール系を作ってみようと思います。
ソース
html
<div class="pause"></div>
css
/* 円 */
.pause {
font-size: 100px;
position: relative;
width: 1.4em;
height: 1.4em;
border: 0.1em solid #39a9d6;
border-radius: 100%;
}
/* マーク */
.pause::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 1.4em;
height: 1.4em;
background:
linear-gradient(to bottom, #39a9d6 0%, #39a9d6 100%) 0.45em 0.3em,
linear-gradient(to bottom, #39a9d6 0%, #39a9d6 100%) 0.75em 0.3em
;
background-size: 0.2em 0.8em;
background-repeat: no-repeat;
}

