mirror of https://github.com/astrit/css.gg.git
24 lines
458 B
CSS
24 lines
458 B
CSS
.gg-dice-2 {
|
|
display: block;
|
|
transform: scale(var(--ggs,1));
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
width: 22px;
|
|
height: 22px;
|
|
border: 2px solid;
|
|
border-radius: 3px
|
|
}
|
|
|
|
.gg-dice-2::before {
|
|
content: "";
|
|
display: block;
|
|
box-sizing: border-box;
|
|
background: currentColor;
|
|
position: absolute;
|
|
width: 4px;
|
|
height: 4px;
|
|
border-radius: 4px;
|
|
left:2px;
|
|
top:2px;
|
|
box-shadow: 10px 10px 0
|
|
} |