mirror of https://github.com/astrit/css.gg.git
31 lines
580 B
CSS
31 lines
580 B
CSS
.gg-poll {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
display: block;
|
|
transform: scale(var(--ggs,1));
|
|
width: 16px;
|
|
height: 16px;
|
|
border: 3px solid transparent;
|
|
border-top: 6px solid transparent;
|
|
box-shadow: 0 0 0 2px,inset 2px 0 0;
|
|
border-radius: 1px
|
|
}
|
|
|
|
.gg-poll::after,
|
|
.gg-poll::before {
|
|
content: "";
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
width: 2px;
|
|
height: 10px;
|
|
background: currentColor;
|
|
top: -3px;
|
|
left: 4px
|
|
}
|
|
|
|
.gg-poll::after {
|
|
height: 4px;
|
|
top: 3px;
|
|
left: 8px
|
|
} |