mirror of https://github.com/astrit/css.gg.git
28 lines
536 B
CSS
28 lines
536 B
CSS
.gg-circleci,
|
|
.gg-circleci::before {
|
|
display: block;
|
|
box-sizing: border-box;
|
|
border-radius: 18px
|
|
}
|
|
|
|
.gg-circleci {
|
|
position: relative;
|
|
transform: scale(var(--ggs,1));
|
|
width: 24px;
|
|
height: 24px;
|
|
border: 4px solid;
|
|
background:
|
|
linear-gradient( to left,
|
|
currentColor 8px,transparent 0)
|
|
no-repeat -2px center/8px 3px
|
|
}
|
|
|
|
.gg-circleci::before {
|
|
content: "";
|
|
position: absolute;
|
|
width: 10px;
|
|
height: 10px;
|
|
border: 3px solid;
|
|
top: 3px;
|
|
right: 3px
|
|
} |