mirror of https://github.com/astrit/css.gg.git
42 lines
811 B
CSS
42 lines
811 B
CSS
.gg-globe {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
display: block;
|
|
transform: scale(var(--ggs,1));
|
|
width: 10px;
|
|
height: 10px;
|
|
border: 2px solid;
|
|
border-radius: 100px;
|
|
margin-left: -3px;
|
|
margin-top: -7px
|
|
}
|
|
|
|
.gg-globe::after,
|
|
.gg-globe::before {
|
|
content: "";
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: absolute
|
|
}
|
|
|
|
.gg-globe::before {
|
|
top: 11px;
|
|
border-right: 2px solid transparent;
|
|
box-shadow:0 2px 0,inset -2px 0 0;
|
|
left: 1px;
|
|
width: 6px;
|
|
height: 2px
|
|
}
|
|
|
|
.gg-globe::after {
|
|
width: 16px;
|
|
height: 10px;
|
|
border-radius: 50px;
|
|
border-top-left-radius: 0;
|
|
border-top-right-radius: 0;
|
|
border: 2px solid;
|
|
border-top-color: transparent;
|
|
right: -7px;
|
|
bottom: -5px;
|
|
transform: rotate(-35deg)
|
|
} |