css.gg
Version:
Minimalistic Icon library Designed by code.
37 lines (34 loc) • 676 B
CSS
.gg-overflow {
box-sizing: border-box;
position: relative;
display: block;
transform: scale(var(--ggs,1));
width: 16px;
height: 16px;
border-radius: 20px;
border-bottom: 8px solid
}
.gg-overflow::after,
.gg-overflow::before {
content: "";
box-sizing: border-box;
position: absolute;
display: block;
border-radius: 20px
}
.gg-overflow::before {
width: 20px;
height: 20px;
border-bottom: 10px solid;
opacity: .6;
left: -2px;
top: -2px
}
.gg-overflow::after {
width: 16px;
height: 16px;
border-top: 8px solid;
opacity: .2;
left: 0;
top: 0
}