mirror of https://github.com/astrit/css.gg.git
31 lines
554 B
CSS
31 lines
554 B
CSS
.gg-push-up {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
display: block;
|
|
transform: scale(var(--ggs,1));
|
|
width: 2px;
|
|
height: 16px;
|
|
background: currentColor;
|
|
}
|
|
|
|
.gg-push-up::after,
|
|
.gg-push-up::before {
|
|
content: "";
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
width: 12px;
|
|
height: 2px;
|
|
border-top: 2px solid;
|
|
top: -5px;
|
|
left: -5px
|
|
}
|
|
|
|
.gg-push-up::after {
|
|
width: 8px;
|
|
height: 8px;
|
|
border-left: 2px solid;
|
|
transform: rotate(45deg);
|
|
left: -3px;
|
|
top: 0
|
|
} |