mirror of https://github.com/astrit/css.gg.git
24 lines
500 B
CSS
24 lines
500 B
CSS
.gg-play-button-o {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
display: block;
|
|
transform: scale(var(--ggs,1));
|
|
width: 22px;
|
|
height: 22px;
|
|
border: 2px solid;
|
|
border-radius: 20px
|
|
}
|
|
|
|
.gg-play-button-o::before {
|
|
content: "";
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
width: 0;
|
|
height: 10px;
|
|
border-top: 5px solid transparent;
|
|
border-bottom: 5px solid transparent;
|
|
border-left: 6px solid;
|
|
top: 4px;
|
|
left: 7px
|
|
} |