mirror of https://github.com/astrit/css.gg.git
28 lines
487 B
CSS
28 lines
487 B
CSS
.gg-drive {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
display: block;
|
|
transform: scale(var(--ggs,1));
|
|
width: 26px;
|
|
height: 10px;
|
|
border: 2px solid;
|
|
border-radius: 2px
|
|
}
|
|
|
|
.gg-drive::after,
|
|
.gg-drive::before {
|
|
content: "";
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
width: 2px;
|
|
height: 2px;
|
|
border-radius: 10px;
|
|
background: currentColor;
|
|
top: 2px;
|
|
right: 2px
|
|
}
|
|
|
|
.gg-drive::before {
|
|
right: 6px
|
|
} |