mirror of https://github.com/astrit/css.gg.git
32 lines
560 B
CSS
32 lines
560 B
CSS
.gg-screen {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
display: block;
|
|
transform: scale(var(--ggs,1));
|
|
width: 22px;
|
|
height: 14px;
|
|
border: 2px solid;
|
|
border-radius: 3px;
|
|
margin-top: -4px
|
|
}
|
|
|
|
.gg-screen::after,
|
|
.gg-screen::before {
|
|
content: "";
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
border-radius: 3px;
|
|
width: 10px;
|
|
height: 2px;
|
|
background: currentColor;
|
|
top: 14px;
|
|
left: 4px
|
|
}
|
|
|
|
.gg-screen::before {
|
|
width: 2px;
|
|
height: 6px;
|
|
top: 10px;
|
|
left: 8px
|
|
} |