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

棒グラフアイコン アイコン

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

ソース

html

<div class="bar_chart"></div>

css

/* 枠 */
.bar_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;
}
/* グラフ */
.bar_chart::before {
	content: "";
	position: absolute;
	top: 0.1em;
	left: 0.1em;
	width: 1.4em;
	height: 1em;
	background:
		linear-gradient(to bottom, #39a9d6 0%, #39a9d6 100%) 0em 0.5em / 0.25em 0.4em no-repeat,
		linear-gradient(to bottom, #39a9d6 0%, #39a9d6 100%) 0.35em 0em / 0.25em 0.9em no-repeat,
		linear-gradient(to bottom, #39a9d6 0%, #39a9d6 100%) 0.7em 0.2em / 0.25em 0.7em no-repeat,
		linear-gradient(to bottom, #39a9d6 0%, #39a9d6 100%) 1.05em 0.7em / 0.25em 0.2em no-repeat
	;
}
タイトルとURLをコピーしました