mirror of https://github.com/astrit/css.gg.git
37 lines
688 B
CSS
37 lines
688 B
CSS
.gg-git-fork {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
display: block;
|
|
transform: scale(var(--ggs,1));
|
|
width: 2px;
|
|
height: 14px;
|
|
background: currentColor
|
|
}
|
|
|
|
.gg-git-fork::after,
|
|
.gg-git-fork::before {
|
|
content: "";
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: absolute
|
|
}
|
|
|
|
.gg-git-fork::before {
|
|
border-right: 2px solid;
|
|
border-bottom: 2px solid;
|
|
border-bottom-right-radius: 4px;
|
|
bottom: 4px;
|
|
width: 8px;
|
|
height: 6px;
|
|
left: 0
|
|
}
|
|
|
|
.gg-git-fork::after {
|
|
width: 4px;
|
|
height: 4px;
|
|
background: currentColor;
|
|
box-shadow:0 12px 0 0,6px 2px 0 0;
|
|
border-radius: 100%;
|
|
left: -1px;
|
|
top: -1px
|
|
} |