cssのみで 「ゲーム」 アイコンを作成してみました。
ソース
html
<div class="gamepad"></div>
css
/* パッド○ */ .gamepad { font-size: 100px; position: relative; margin: 0.5em 0 0 0; width: 0.7em; height: 0.7em; border-radius: 100%; background-image:-webkit-radial-gradient(#39a9d6 0%,#39a9d6 100%); background-image:radial-gradient(#39a9d6 0%,#39a9d6 100%); box-shadow: 0.9em 0 0 0 #39a9d6; } /* + */ .gamepad::before { content: ""; position: absolute; top: 0; left: 0; width: 1.6em; height: 1.6em; background: linear-gradient(to bottom, #fff 0%, #fff 100%) 0.15em 0.3em / 0.4em 0.1em no-repeat, linear-gradient(to bottom, #fff 0%, #fff 100%) 0.3em 0.15em / 0.1em 0.4em no-repeat, linear-gradient(to bottom, #39a9d6 0%, #39a9d6 100%) 0.3em 0em / 1em 0.5em no-repeat ; } /* ○ */ .gamepad::after { content: ""; position: absolute; top: 0.4em; left: 1.1em; width: 0.2em; height: 0.2em; border-radius: 100%; background-image:-webkit-radial-gradient(#fff 0%,#fff 100%); background-image:radial-gradient(#fff 0%,#fff 100%); box-shadow: 0.2em -0.2em 0 0 #fff; }