イジェクト – css eject –

イジェクトアイコン アイコン

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

ソース

html

<div class="eject"></div>

css

/* 長方形 */
.eject {
	font-size: 100px;
	position: relative;
	width: 0;
	height: 0;
	border-right: 0.8em solid transparent;
	border-left: 0.8em solid transparent;
	border-bottom: 0.8em solid #39a9d6;
}
/* △ */
.eject::before {
	content: "";
	position: absolute;
	top: 0.9em;
	left: -0.8em;
	width: 1.6em;
	height: 0.3em;
	background-color: #39a9d6;
}

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