mirror of https://github.com/astrit/css.gg.git
45 lines
850 B
CSS
45 lines
850 B
CSS
.gg-dribbble {
|
|
background:
|
|
radial-gradient(
|
|
circle at 50%,
|
|
transparent 0,
|
|
transparent 9px,
|
|
currentColor 9.2px,
|
|
currentColor 11px,
|
|
transparent 11.2px)
|
|
no-repeat -8px center;
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
display: block;
|
|
transform:
|
|
rotate(-25deg)
|
|
scale(var(--ggs,1));
|
|
width: 22px;
|
|
height: 22px;
|
|
box-shadow: inset 0 0 0 2px;
|
|
border-radius: 50%;
|
|
overflow: hidden
|
|
}
|
|
|
|
.gg-dribbble::after,
|
|
.gg-dribbble::before {
|
|
content: "";
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
border-radius: 50%;
|
|
border: 2px solid;
|
|
height: 26px
|
|
}
|
|
|
|
.gg-dribbble::before {
|
|
width: 36px;
|
|
left: -6px;
|
|
top: -15px
|
|
}
|
|
|
|
.gg-dribbble::after {
|
|
top: 13px;
|
|
left: -7px;
|
|
width: 31px
|
|
} |