cssのみで 「クラウド」 アイコンを作成してみました。微妙な感じになってしまいました・・・
ソース
html
<div class="cloud"></div>
css
/* ●大 */ .cloud { font-size: 100px; position: relative; width: 1.6em; height: 0.8em; background-color: #39a9d6; border-radius: 0.8em; } /* ●中 */ .cloud::before { content: ""; position: absolute; top: -0.4em; left: 0.2em; width: 0.8em; height: 0.8em; background-color: #39a9d6; border-radius: 0.8em; } /* ●小 */ .cloud::after { content: ""; position: absolute; top: -0.2em; left: 0.9em; width: 0.4em; height: 0.4em; background-color: #39a9d6; border-radius: 0.6em; }