– line chart - cssのみで折れ線グラフアイコンを描いてみた

折れ線グラフアイコン アイコン

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

ソース

html

<div class="line_chart"></div>

css

/* 枠 */
.line_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;
}
/* グラフ */
.line_chart::before {
	content: "";
	position: absolute;
	top: 0.5em;
	left: 0.3em;
	width: 0.1em;
	height: 0.6em;
	background-color: #39a9d6;
	box-shadow: 0.4em -0.6em 0 0 #39a9d6;
	-webkit-transform: rotate(53deg);
	transform: rotate(53deg);
}
/* グラフ */
.line_chart::after {
	content: "";
	position: absolute;
	top: 0.535em;
	left: 0.65em;
	width: 0.1em;
	height: 0.5em;
	background-color: #39a9d6;
	-webkit-transform: rotate(-38deg);
	transform: rotate(-38deg);
}
タイトルとURLをコピーしました