マイク2 – css microphone2 –

マイクアイコン アイコン

cssのみで 「マイク」 アイコンを作成してみました。微妙な感じになってしまいました・・・

ソース

html

<div class="microphone2"></div>

css

/* 円 */
.microphone2 {
	font-size: 100px;
	position: relative;
	width: 0.6em;
	height: 0.6em;
	background-color: #39a9d6;
	border-radius: 100%;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
/* 胴体 */
.microphone2::before {
	content: "";
	position: absolute;
	top: 0.5em;
	left: 0.1em;
	width: 0.2em;
	height: 0;
	border-left: 0.1em solid transparent;
	border-right: 0.1em solid transparent;
	border-top: 0.8em solid #39a9d6;
}
/* ケーブル */
.microphone2::after {
	content: "";
	position: absolute;
	top: 1.2em;
	left: 0.25em;
	width: 0.1em;
	height: 0.3em;
	border-left: 0.1em solid #39a9d6;
	border-right: 0.1em solid #39a9d6;
	border-bottom: 0.1em solid #39a9d6;
	border-radius: 0 0 0.15em 0.15em;
}

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