mirror of https://github.com/astrit/css.gg.git
29 lines
547 B
CSS
29 lines
547 B
CSS
.gg-bookmark,
|
|
.gg-bookmark::after {
|
|
display: block;
|
|
box-sizing: border-box;
|
|
border-top-right-radius: 3px
|
|
}
|
|
|
|
.gg-bookmark {
|
|
border: 2px solid;
|
|
border-bottom: 0;
|
|
border-top-left-radius: 3px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
transform: scale(var(--ggs,1));
|
|
width: 14px;
|
|
height: 16px
|
|
}
|
|
|
|
.gg-bookmark::after {
|
|
content: "";
|
|
position: absolute;
|
|
width: 12px;
|
|
height: 12px;
|
|
border-top: 2px solid;
|
|
border-right: 2px solid;
|
|
transform: rotate(-45deg);
|
|
top: 9px;
|
|
left: -1px
|
|
} |