mirror of https://github.com/astrit/css.gg.git
39 lines
798 B
CSS
39 lines
798 B
CSS
.gg-arrow-long-up-r {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
display: block;
|
|
transform: scale(var(--ggs,1));
|
|
border-right: 2px solid transparent;
|
|
border-left: 2px solid transparent;
|
|
border-bottom: 4px solid transparent;
|
|
box-shadow: inset 0 0 0 2px;
|
|
height: 24px;
|
|
width: 6px
|
|
}
|
|
|
|
.gg-arrow-long-up-r::after,
|
|
.gg-arrow-long-up-r::before {
|
|
content: "";
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: absolute
|
|
}
|
|
|
|
.gg-arrow-long-up-r::after {
|
|
width: 6px;
|
|
height: 6px;
|
|
border-top: 2px solid;
|
|
border-left: 2px solid;
|
|
transform: rotate(45deg);
|
|
top: 0;
|
|
left: -2px
|
|
}
|
|
|
|
.gg-arrow-long-up-r::before {
|
|
width: 6px;
|
|
height: 6px;
|
|
border: 2px solid;
|
|
transform: rotate(45deg);
|
|
bottom: -5px;
|
|
left: -2px
|
|
} |