mirror of https://github.com/astrit/css.gg.git
39 lines
693 B
CSS
39 lines
693 B
CSS
.gg-import {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
display: block;
|
|
transform: scale(var(--ggs,1));
|
|
width: 18px;
|
|
height: 14px;
|
|
border: 2px solid;
|
|
border-top: 0;
|
|
box-shadow:
|
|
-6px -8px 0 -6px,
|
|
6px -8px 0 -6px
|
|
}
|
|
|
|
.gg-import::after,
|
|
.gg-import::before {
|
|
content: "";
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: absolute
|
|
}
|
|
|
|
.gg-import::before {
|
|
background: currentColor;
|
|
width: 2px;
|
|
height: 14px;
|
|
right: 6px;
|
|
bottom: 5px
|
|
}
|
|
|
|
.gg-import::after {
|
|
width: 6px;
|
|
height: 6px;
|
|
border-right: 2px solid;
|
|
border-bottom: 2px solid;
|
|
right: 4px;
|
|
bottom: 4px;
|
|
transform: rotate(45deg)
|
|
} |