cssのみで マウス アイコンを作成してみました。かなり微妙です・・・
ソース
html
<div class="mouse"></div>
css
/* 枠 */
.mouse {
font-size: 100px;
position: relative;
width: 0.8em;
height: 1.4em;
border: 0.1em solid #39a9d6;
border-radius: 0.6em;
}
/* ライン */
.mouse::before {
content: "";
position: absolute;
top: -0.1em;
left: 0.375em;
width: 0.05em;
height: 0.8em;
background-color: #39a9d6;
border-radius: 0.1em;
}
/* スクロール */
.mouse::after {
content: "";
position: absolute;
top: 0.1em;
left: 0.3em;
width: 0.2em;
height: 0.5em;
background-color: #39a9d6;
border-radius: 0.2em;
}

