mirror of https://github.com/astrit/css.gg.git
46 lines
1002 B
CSS
46 lines
1002 B
CSS
.gg-backspace {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
display: block;
|
|
width: 14px;
|
|
height: 14px;
|
|
transform: scale(var(--ggs,1));
|
|
border: 2px solid;
|
|
border-left: 0;
|
|
border-top-right-radius: 2px;
|
|
border-bottom-right-radius: 2px
|
|
}
|
|
|
|
.gg-backspace::after,
|
|
.gg-backspace::before {
|
|
content: "";
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: absolute
|
|
}
|
|
|
|
.gg-backspace::before {
|
|
background:
|
|
linear-gradient( to left,
|
|
currentColor 18px,transparent 0)
|
|
no-repeat center center/10px 2px;
|
|
border-right: 3px solid transparent;
|
|
box-shadow: inset 0 0 0 2px;
|
|
right: 2px;
|
|
bottom: 1px;
|
|
width: 8px;
|
|
height: 8px;
|
|
border-left: 3px solid transparent;
|
|
transform: rotate(45deg)
|
|
}
|
|
|
|
.gg-backspace::after {
|
|
width: 10px;
|
|
height: 10px;
|
|
border-top: 2px solid;
|
|
border-left: 2px solid;
|
|
border-top-left-radius: 1px;
|
|
transform: rotate(-45deg);
|
|
top: 0;
|
|
left: -5px
|
|
} |