mirror of https://github.com/astrit/css.gg.git
37 lines
678 B
CSS
37 lines
678 B
CSS
.gg-figma {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
display: block;
|
|
width: 14px;
|
|
height: 20px;
|
|
transform: scale(var(--ggs,1));
|
|
background:
|
|
linear-gradient(
|
|
to left,
|
|
currentColor 3px,
|
|
transparent 0
|
|
) no-repeat 3px 7px/3px 6px,
|
|
linear-gradient(
|
|
to left,
|
|
currentColor 3px,
|
|
transparent 0
|
|
) no-repeat 3px 14px/3px 3px
|
|
}
|
|
|
|
.gg-figma::after,
|
|
.gg-figma::before {
|
|
content: "";
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
width: 13px;
|
|
height: 6px;
|
|
background: currentColor;
|
|
border-radius: 22px
|
|
}
|
|
|
|
.gg-figma::after {
|
|
width: 6px;
|
|
top: 7px;
|
|
box-shadow: 7px 0 0,0 7px 0
|
|
} |