mirror of https://github.com/astrit/css.gg.git
32 lines
530 B
CSS
32 lines
530 B
CSS
.gg-danger {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
display: block;
|
|
transform: scale(var(--ggs,1));
|
|
width: 20px;
|
|
height: 20px;
|
|
border: 2px solid;
|
|
border-radius: 40px
|
|
}
|
|
|
|
.gg-danger::after,
|
|
.gg-danger::before {
|
|
content: "";
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
border-radius: 3px;
|
|
width: 2px;
|
|
background: currentColor;
|
|
left: 7px
|
|
}
|
|
|
|
.gg-danger::after {
|
|
top: 2px;
|
|
height: 8px
|
|
}
|
|
|
|
.gg-danger::before {
|
|
height: 2px;
|
|
bottom: 2px
|
|
} |