cssのみで リスト アイコンを作成してみました。box-shadowを使って作ってみました。
ソース
html
<div class="list"></div>
css
/* 左 */
.list {
font-size: 100px;
position: relative;
width: 0.2em;
height: 0.2em;
background-color: #39a9d6;
box-shadow:
0 0.4em 0 0 #39a9d6,
0 0.8em 0 0 #39a9d6,
0 1.2em 0 0 #39a9d6
;
}
/* 右 */
.list::before {
position: absolute;
content: "";
top: 0;
left: 0.4em;
width: 1.2em;
height: 0.2em;
background-color: #39a9d6;
box-shadow:
0 0.4em 0 0 #39a9d6,
0 0.8em 0 0 #39a9d6,
0 1.2em 0 0 #39a9d6
;
}

