カメラ – css camera –

カメラアイコン アイコン

cssのみで 「カメラ」 アイコンを作成してみました。

ソース

html

<div class="camera"></div>

css

/* 上 */
.camera {
	font-size: 100px;
	position: relative;
	width: 0.6em;
	height: 0.4em;
	background-color: #39a9d6;
	border-radius: 0.2em 0.2em 0 0 / 0.3em 0.3em 0 0;
}
/* 本体 */
.camera::before {
	content: "";
	position: absolute;
	top: 0.3em;
	left: -0.5em;
	width: 1.6em;
	height: 1em;
	background-color: #39a9d6;
	border-radius: 0.2em;
}
/* レンズ */
.camera::after {
	content: "";
	position: absolute;
	top: 0.4em;
	left: -0.1em;
	width: 0.6em;
	height: 0.6em;
	border: 0.1em solid #fff;
	border-radius: 100%;
}

タイトルとURLをコピーしました