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