mirror of https://github.com/astrit/css.gg.git
31 lines
529 B
CSS
31 lines
529 B
CSS
.gg-monday {
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
transform: scale(var(--ggs,1));
|
|
width: 21px;
|
|
height: 16px
|
|
}
|
|
|
|
.gg-monday::after,
|
|
.gg-monday::before {
|
|
background: currentColor;
|
|
content: "";
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
width: 6px;
|
|
border-radius: 22px
|
|
}
|
|
|
|
.gg-monday::before {
|
|
height: 16px;
|
|
transform: rotate(35deg);
|
|
box-shadow: 7px -5px 0 0
|
|
}
|
|
|
|
.gg-monday::after {
|
|
height: 6px;
|
|
bottom: 1px;
|
|
right: 0
|
|
} |