検索 – css search –

検索アイコン アイコン

cssのみで 検索 アイコンを作成してみました。ちょっとアイコンぽくなってきました。

ソース

html

<div class="search"></div>

css

/* 円 */
.search {
	font-size: 100px;
	position: relative;
	width: 1em;
	height: 1em;
	border: 0.1em solid #39a9d6;
	border-radius: 100%;
}

/* 持ち手 */
.search::before {
	position: absolute;
	content: "";
	top: 0.75em;
	left: 1.1em;
	width: 0.1em;
	height: 0.8em;
	background-color: #39a9d6;
	border-radius: 0.5em;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
タイトルとURLをコピーしました