cssのみで ノートPC アイコンを作成してみました。微妙です・・・
ソース
html
<div class="laptop"></div>
css
/* モニタ */
.laptop {
font-size: 100px;
position: relative;
width: 1em;
height: 0.6em;
border: 0.1em solid #39a9d6;
border-radius: 0.1em;
}
/* 本体 */
.laptop::before {
content: "";
position: absolute;
top: 0.75em;
left: -0.3em;
width: 0.4em;
height: 0.05em;
border-top: 0.05em solid #39a9d6;
border-bottom: 0.05em solid #39a9d6;
border-left: 0.6em solid #39a9d6;
border-right: 0.6em solid #39a9d6;
border-radius: 0 0 0.1em 0.1em;
}

