アーカイブ – css archive –

アーカイブアイコン アイコン

cssのみで アーカイブ アイコンを作成してみました。すこし不恰好になってしまいました。

ソース

html

<div class="archive"></div>

css

/* 上 */
.archive {
	font-size: 100px;
	position: relative;
	width: 1.6em;
	height: 0.5em;
	background-color: #39a9d6;
	border-radius: 0.1em 0.1em 0 0;
}
/* 下 */
.archive::before {
	position: absolute;
	content: "";
	top: 0.6em;
	left: 0.1em;
	width: 0.6em;
	height: 0.1em;
	border-top: 0.2em solid #39a9d6;
	border-bottom: 0.7em solid #39a9d6;
	border-left: 0.4em solid #39a9d6;
	border-right: 0.4em solid #39a9d6;
	border-radius: 0 0 0.1em 0.1em;
}
タイトルとURLをコピーしました