cssのみで 「グラス」 アイコンを作成してみました。
ソース
html
<div class="glass"></div>
css
/* 本体 */
.glass {
font-size: 100px;
position: relative;
margin: 0.2em 0 0 0.4em;
width: 0.6em;
height: 1.2em;
border: 0.1em solid #39a9d6;
border-radius: 0 0 0.1em 0.1em;
}
/* 中身 */
.glass::before {
content: "";
position: absolute;
top: 0.25em;
left: 0.05em;
width: 0.5em;
height: 0.9em;
background-color: #39a9d6;
border-radius: 0 0 0.05em 0.05em;
}
/* ストロー */
.glass::after {
content: "";
position: absolute;
top: -0.3em;
left: 0.3em;
width: 0.1em;
height: 1em;
background-color: #39a9d6;
-webkit-transform: skewX(-15deg);
transform: skewX(-15deg);
}

