cssのみで 「イメージ」 アイコンを作成してみました。微妙な感じになってしまいました・・・
ソース
html
<div class="image"></div>
css
/* 枠 / ● */
.image {
font-size: 100px;
position: relative;
width: 1.4em;
height: 1.0em;
border: 0.1em solid #39a9d6;
border-radius: 0.1em;
background-image: radial-gradient(
0.1em at 1.0em 0.4em,
#39a9d6 0%,
#39a9d6 0.09em,
rgba(0, 0, 0, 0) 0.1em
);
background-repeat: no-repeat;
}
/* 山(大) */
.image::before {
content: "";
position: absolute;
top: 0.3em;
left: 0.1em;
width: 0;
height: 0;
border-right: 0.4em solid transparent;
border-left: 0.4em solid transparent;
border-bottom: 0.6em solid #39a9d6;
}
/* 山(小) */
.image::after {
content: "";
position: absolute;
top: 0.6em;
left: 0.7em;
width: 0;
height: 0;
border-right: 0.3em solid transparent;
border-left: 0.3em solid transparent;
border-bottom: 0.3em solid #39a9d6;
}

