ホームアイコンを作成してみました。ちょっと不恰好ですが、最初はこんなもんかな・・・
ソース
html
<div class="home1"></div>
css
/* 壁 */
.home1 {
font-size: 100px;
position: relative;
width: 0.4em;
height: 0.4em;
border-top: 0.6em solid #39a9d6;
border-left: 0.4em solid #39a9d6;
border-right: 0.4em solid #39a9d6;
}
/* 屋根 */
.home1::before {
position: absolute;
content: "";
top: -1.2em;
left: -0.6em;
width: 0;
height: 0;
border-left: 0.8em solid transparent;
border-right: 0.8em solid transparent;
border-bottom: 0.8em solid #39a9d6;
}
/* 煙突 */
.home1::after {
position: absolute;
top: -1.0em;
left: 0.6em;
width: 0.1em;
height: 0.4em;
content: "";
background-color: #39a9d6;
}

