mirror of https://github.com/astrit/css.gg.git
33 lines
554 B
CSS
33 lines
554 B
CSS
.gg-maze {
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
transform: scale(var(--ggs,1));
|
|
width: 24px;
|
|
height: 14px
|
|
}
|
|
|
|
.gg-maze::after,
|
|
.gg-maze::before {
|
|
content: "";
|
|
display: block;
|
|
position: absolute;
|
|
box-sizing: border-box;
|
|
height: 12px;
|
|
transform: rotate(45deg)
|
|
}
|
|
|
|
.gg-maze::before {
|
|
width: 12px;
|
|
right: 2px;
|
|
bottom: -2px;
|
|
border-left: 4px solid;
|
|
border-top: 4px solid
|
|
}
|
|
|
|
.gg-maze::after {
|
|
width: 4px;
|
|
background: currentColor;
|
|
left: 3px;
|
|
bottom: 1px
|
|
} |