css.gg
Version:
Minimalistic Icon library Designed by code.
39 lines (36 loc) • 749 B
CSS
.gg-smile {
box-sizing: border-box;
position: relative;
display: block;
transform: scale(var(--ggs,1));
width: 20px;
height: 20px;
border: 2px solid;
border-radius: 100px
}
.gg-smile::after,
.gg-smile::before {
content: "";
display: block;
box-sizing: border-box;
position: absolute;
left: 4px
}
.gg-smile::before {
background: currentColor;
box-shadow: 6px 0 0;
width: 2px;
height: 2px;
border-radius: 50%;
top: 5px
}
.gg-smile::after {
width: 8px;
height: 4px;
border-radius: 150px;
border-top-left-radius: 0;
border-top-right-radius: 0;
border: 2px solid;
border-top-color: transparent;
top: 9px
}