mirror of https://github.com/astrit/css.gg.git
38 lines
691 B
CSS
38 lines
691 B
CSS
.gg-games {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
display: block;
|
|
transform: scale(var(--ggs,1));
|
|
width: 24px;
|
|
height: 12px;
|
|
border: 3px solid transparent;
|
|
border-left: 6px solid transparent;
|
|
box-shadow:
|
|
0 0 0 2px,
|
|
inset 2px 0 0;
|
|
border-radius: 40px
|
|
}
|
|
|
|
.gg-games::after,
|
|
.gg-games::before {
|
|
content: "";
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
height: 2px;
|
|
background: currentColor
|
|
}
|
|
|
|
.gg-games::before {
|
|
left: -2px;
|
|
width: 6px;
|
|
top: 2px
|
|
}
|
|
|
|
.gg-games::after {
|
|
border-radius: 3px;
|
|
width: 2px;
|
|
box-shadow:0 4px 0,-2px 2px 0,2px 2px 0;
|
|
top: 0;
|
|
right: 2px
|
|
} |