最後へ – css step-forward –

最後へアイコン アイコン

cssのみで 「最後へ」 アイコンを作成してみました。しばらくはコントロール系を作ってみようと思います。

ソース

html

<div class="step-forward"></div>

css

/* 円 */
.step-forward {
	font-size: 100px;
	position: relative;
	width: 1.4em;
	height: 1.4em;
	border: 0.1em solid #39a9d6;
	border-radius: 100%;
}
/* 三角マーク */
.step-forward::before {
	content: "";
	position: absolute;
	top: 0.3em;
	left: 0.45em;
	width: 0;
	height: 0;
	border-top: 0.4em solid transparent;
	border-left: 0.4em solid #39a9d6;
	border-bottom: 0.4em solid transparent;
}
/* ラインマーク */
.step-forward::after {
	content: "";
	position: absolute;
	top: 0.3em;
	left: 0.85em;
	width: 0.1em;
	height: 0.8em;
	background-color: #39a9d6;
}
タイトルとURLをコピーしました