cssのみで 「鍵」 アイコンを作成してみました。
ソース
html
<div class="key"></div>
css
/* ○ */
.key {
font-size: 100px;
position: relative;
margin: 0 0 0 0.3em;
width: 0.8em;
height: 0.8em;
border: 0.1em solid #39a9d6;
border-radius: 100%;
}
/* 縦ライン */
.key::before {
content: "";
position: absolute;
top: 0.8em;
left: 0.4em;
width: 0.1em;
height: 0.7em;
background-color: #39a9d6;
border-radius: 0 0 0.1em 0.1em;
}
/* 横ライン */
.key::after {
content: "";
position: absolute;
top: 1.0em;
left: 0.5em;
width: 0.3em;
height: 0.1em;
background-color: #39a9d6;
border-radius: 0 0.1em 0.1em 0;
box-shadow: -0.1em 0.2em 0 0 #39a9d6;
}

