– area chart - cssのみで面グラフアイコンを描いてみた

グラフアイコン アイコン

cssのみで 「面グラフ」 アイコンを作成してみました。

ソース

html

<div class="area_chart"></div>

css

/* 枠 */
.area_chart {
	font-size: 100px;
	position: relative;
	margin-top: 0.2em;
	width: 1.5em;
	height: 1.1em;
	border-left: 0.1em solid #39a9d6;
	border-bottom: 0.1em solid #39a9d6;
}
/* グラフ */
.area_chart::before {
	content: "";
	position: absolute;
	top: 0.2em;
	left: 0.1em;
	width: 0;
	height: 0;
	border-left: 0.3em solid transparent;
	border-right: 0.7em solid transparent;
	border-bottom: 0.8em solid #39a9d6;
}
/* グラフ */
.area_chart::after {
	content: "";
	position: absolute;
	top: 0.4em;
	left: 0.4em;
	width: 0;
	height: 0;
	border-left: 0.8em solid transparent;
	border-right: 0.2em solid transparent;
	border-bottom: 0.6em solid #39a9d6;
}
タイトルとURLをコピーしました