cssのみで 「ファイル」 アイコンを作成してみました。どうしても右上の折り返しがうまく表現できませんでした。仕方ないので丸くなっています・・・
ソース
html
<div class="file"></div>
css
/* 本体 */
.file {
font-size: 100px;
position: relative;
margin: 0 auto;
width: 1.0em;
height: 1.4em;
border: 0.1em solid #39a9d6;
border-radius: 0.1em 0.65em 0.1em 0.1em / 0.1em 0.65em 0.1em 0.1em;
}
/* 右上 */
.file::before {
content: "";
position: absolute;
top: -0.1em;
left: 0.5em;
width: 0.4em;
height: 0.4em;
border-top: 0.1em solid transparent;
border-left: 0.1em solid #39a9d6;
border-right: 0.1em solid transparent;
border-bottom: 0.1em solid #39a9d6;
border-radius: 0.1em;
}

