mirror of https://github.com/astrit/css.gg.git
41 lines
770 B
CSS
41 lines
770 B
CSS
.gg-toolbox {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
display: block;
|
|
transform: scale(var(--ggs,1));
|
|
width: 22px;
|
|
height: 16px;
|
|
border: 2px solid;
|
|
border-radius: 2px
|
|
}
|
|
|
|
.gg-toolbox::after,
|
|
.gg-toolbox::before {
|
|
content: "";
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: absolute
|
|
}
|
|
|
|
.gg-toolbox::before {
|
|
border: 2px solid;
|
|
border-bottom: 0;
|
|
border-top-left-radius: 3px;
|
|
border-top-right-radius: 3px;
|
|
left: 4px;
|
|
width: 10px;
|
|
height: 4px;
|
|
top: -5px
|
|
}
|
|
|
|
.gg-toolbox::after {
|
|
width: 18px;
|
|
height: 2px;
|
|
border-left: 4px solid transparent;
|
|
border-right: 4px solid transparent;
|
|
box-shadow:
|
|
0 -2px 0,
|
|
inset 4px 0 0,
|
|
inset -4px 0 0;
|
|
top: 4px
|
|
} |