mirror of https://github.com/astrit/css.gg.git
28 lines
527 B
CSS
28 lines
527 B
CSS
.gg-google,
|
|
.gg-google::before {
|
|
box-sizing: border-box;
|
|
display: block
|
|
}
|
|
|
|
.gg-google {
|
|
position: relative;
|
|
transform: scale(var(--ggs,1));
|
|
width: 20px;
|
|
height: 20px;
|
|
border: 4px solid;
|
|
border-right-color: transparent;
|
|
border-radius: 22px
|
|
}
|
|
|
|
.gg-google::before {
|
|
content: "";
|
|
position: absolute;
|
|
border-top: 4px solid;
|
|
border-right: 4px solid;
|
|
border-bottom: 4px solid;
|
|
border-radius: 0 0 10px 0;
|
|
width: 10px;
|
|
height: 12px;
|
|
right: -4px;
|
|
bottom: -4px
|
|
} |