cssのみで 「ベッド」 アイコンを作成してみました。寝てるように見えないですね。
ソース
html
<div class="bed"></div>
css
/* 本体 */
.bed {
font-size: 100px;
position: relative;
margin: 0;
width: 1.6em;
height: 1.6em;
background:
linear-gradient(to bottom, #39a9d6 0%, #39a9d6 100%) 0em 0.3em / 0.1em 1em no-repeat,
linear-gradient(to bottom, #39a9d6 0%, #39a9d6 100%) 0.1em 1em / 1.5em 0.1em no-repeat,
linear-gradient(to bottom, #39a9d6 0%, #39a9d6 100%) 1.5em 1.1em / 0.1em 0.2em no-repeat
;
}
/* 頭 */
.bed::before {
content: "";
position: absolute;
top: 0.6em;
left: 0.1em;
width: 0.4em;
height: 0.4em;
background-color:#39a9d6;
border-radius: 100%;
}
/* 体 */
.bed::after {
content: "";
position: absolute;
top: 0.6em;
left: 0.5em;
width: 1.0em;
height: 0.4em;
background-color:#39a9d6;
border-radius: 0.3em 0.5em 0em 0em;
}

