cssのみで 「ゴミ箱」 アイコンを作成してみました。微妙な感じになってしまいました・・・
ソース
html
<div class="trash"></div>
css
/* 本体 */
.trash {
font-size: 100px;
position: relative;
width: 0.9em;
height: 1.2em;
border-left: 0.1em solid #39a9d6;
border-right: 0.1em solid #39a9d6;
border-bottom: 0.1em solid #39a9d6;
border-radius: 0 0 0.1em 0.1em;
background:
linear-gradient(to bottom, #39a9d6 0%, #39a9d6 100%) 0.2em 0.2em,
linear-gradient(to bottom, #39a9d6 0%, #39a9d6 100%) 0.4em 0.2em,
linear-gradient(to bottom, #39a9d6 0%, #39a9d6 100%) 0.6em 0.2em
;
background-size: 0.1em 0.8em;
background-repeat: no-repeat;
}
/* 蓋 */
.trash::before {
content: "";
position: absolute;
top: -0.1em;
left: -0.2em;
width: 1.3em;
height: 0.1em;
background-color: #39a9d6;
}
/* 取っ手 */
.trash::after {
content: "";
position: absolute;
top: -0.3em;
left: 0.1em;
width: 0.5em;
height: 0.2em;
border-top: 0.1em solid #39a9d6;
border-left: 0.1em solid #39a9d6;
border-right: 0.1em solid #39a9d6;
border-radius: 0.1em 0.1em 0 0;
}