mirror of https://github.com/astrit/css.gg.git
40 lines
826 B
CSS
40 lines
826 B
CSS
.gg-alarm {
|
|
background:
|
|
linear-gradient( to left,
|
|
currentColor 5px, transparent 0)
|
|
no-repeat 4.5px 6px/5px 2px,
|
|
linear-gradient( to left,
|
|
currentColor 7px, transparent 0)
|
|
no-repeat 4.5px 2px/2px 6px;
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
display: block;
|
|
width: 16px;
|
|
height: 16px;
|
|
border-radius: 100%;
|
|
border: 2px solid transparent;
|
|
transform: scale(var(--ggs,1));
|
|
box-shadow: 0 0 0 2px
|
|
}
|
|
|
|
.gg-alarm::after,
|
|
.gg-alarm::before {
|
|
content: "";
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
width: 6px;
|
|
height: 2px;
|
|
background: currentColor;
|
|
top: -4px
|
|
}
|
|
|
|
.gg-alarm::before {
|
|
left: -5px;
|
|
transform: rotate(-42deg)
|
|
}
|
|
|
|
.gg-alarm::after {
|
|
transform: rotate(42deg);
|
|
right: -5px
|
|
} |