cssのみで 時計 アイコンを作成してみました。すこし不恰好になってしまいました。
ソース
html
<div class="clock"></div>
css
/* 枠 */
.clock {
font-size: 100px;
position: relative;
width: 1.4em;
height: 1.4em;
border: 0.1em solid #39a9d6;
border-radius: 100%;
}
/* 長針 */
.clock::before {
content: "";
position: absolute;
top: 0.2em;
left: 0.65em;
width: 0.1em;
height: 0.6em;
background-color: #39a9d6;
}
/* 短針 */
.clock::after {
content: "";
position: absolute;
top: 0.7em;
left: 0.65em;
width: 0.55em;
height: 0.1em;
background-color: #39a9d6;
}

