css.gg/icons/css/arrow-align-v.css

45 lines
970 B
CSS

.gg-arrow-align-v {
box-sizing: border-box;
position: relative;
display: block;
transform: scale(var(--ggs,1));
width: 10px;
height: 20px;
background:
linear-gradient(
to left,
currentColor 15px,transparent 0)
no-repeat 4px 2px/2px 6px,
linear-gradient(
to left,
currentColor 15px,transparent 0)
no-repeat 4px 12px/2px 6px,
linear-gradient(
to left,
currentColor 15px,transparent 0)
no-repeat center/10px 2px
}
.gg-arrow-align-v::after,
.gg-arrow-align-v::before {
content: "";
display: block;
box-sizing: border-box;
position: absolute;
width: 6px;
height: 6px;
transform: rotate(-45deg);
left: 2px
}
.gg-arrow-align-v::after {
border-bottom: 2px solid;
border-left: 2px solid;
bottom: 1px
}
.gg-arrow-align-v::before {
border-top: 2px solid;
border-right: 2px solid;
top: 1px
}