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