css.gg
Version:
Minimalistic Icon library Designed by code.
38 lines (35 loc) • 786 B
CSS
.gg-stark {
background: currentColor;
box-sizing: border-box;
position: relative;
display: block;
transform: rotate(45deg) scale(var(--ggs,1));
width: 3px;
height: 16px
}
.gg-stark::after,
.gg-stark::before {
content: "";
display: block;
box-sizing: border-box;
position: absolute;
width: 8px;
height: 16px;
border: 3px solid
}
.gg-stark::before {
border-top-left-radius: 100px;
border-bottom-left-radius: 100px;
border-right: 0;
border-top-color: transparent;
left: -7px;
bottom: 0
}
.gg-stark::after {
border-top-right-radius: 100px;
border-bottom-right-radius: 100px;
border-left: 0;
border-bottom-color: transparent;
right: -7px;
top: 0
}