css.gg
Version:
Minimalistic Icon library Designed by code.
35 lines (32 loc) • 667 B
CSS
.gg-shield {
box-sizing: border-box;
position: relative;
display: block;
transform: scale(var(--ggs,1));
width: 14px;
height: 4px;
background: currentColor;
border-radius: 100px;
margin-top: -6px
}
.gg-shield::after,
.gg-shield::before {
content: "";
display: block;
box-sizing: border-box;
position: absolute;
border-radius: 3px;
width: 8px;
height: 16px;
border: 2px solid
}
.gg-shield::before {
border-bottom-left-radius: 40px;
border-right: 0;
left: 0
}
.gg-shield::after {
border-bottom-right-radius: 40px;
border-left: 0;
right: 0
}