音量0 – css volume0 –

ミュートアイコン アイコン

cssのみで 音量0 アイコンを作成してみました。かなり微妙です・・・

ソース

html

<div class="volume"></div>

css

/* 本体左 */
.volume {
	font-size: 100px;
	position: relative;
	width: 0.4em;
	height: 0.4em;
	background-color: #39a9d6;
}
/* 本体右 */
.volume::before {
	content: "";
	position: absolute;
	top: -0.3em;
	left: 0;
	width: 0;
	height: 0;
	border-top: 0.5em solid transparent;
	border-bottom: 0.5em solid transparent;
	border-right: 0.8em solid #39a9d6;
}

タイトルとURLをコピーしました