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