css.gg
Version:
Minimalistic Icon library Designed by code.
37 lines (34 loc) • 684 B
CSS
.gg-eye {
position: relative;
display: block;
transform: scale(var(--ggs,1));
width: 24px;
height: 18px;
border-bottom-right-radius: 100px;
border-bottom-left-radius: 100px;
overflow: hidden;
box-sizing: border-box
}
.gg-eye::after,
.gg-eye::before {
content: "";
display: block;
border-radius: 100px;
position: absolute;
box-sizing: border-box
}
.gg-eye::after {
top: 2px;
box-shadow:
inset 0 -8px 0 2px,
inset 0 0 0 2px;
width: 24px;
height: 24px
}
.gg-eye::before {
width: 8px;
height: 8px;
border: 2px solid;
bottom: 4px;
left: 8px
}