cssのみで タブレット アイコンを作成してみました。微妙です・・・
ソース
html
<div class="tablet"></div>
css
/* モニタ */
.tablet {
font-size: 100px;
position: relative;
width: 1em;
height: 1.4em;
border: 0.1em solid #39a9d6;
border-radius: 0.1em;
}
/* ボタン */
.tablet::before {
content: "";
position: absolute;
top: 1.1em;
left: -0.05em;
width: 0.2em;
height: 0.2em;
border-top: 0.1em solid #39a9d6;
border-bottom: 0.1em solid #39a9d6;
border-left: 0.45em solid #39a9d6;
border-right: 0.45em solid #39a9d6;
border-radius: 0 0 0.1em 0.1em;
}
/* ボタン背景 */
.tablet::after {
content: "";
position: absolute;
top: 1.1em;
left: 0.3em;
width: 0.2em;
height: 0.2em;
border: 0.1em solid #39a9d6;
border-radius: 100%;
}

