mirror of https://github.com/astrit/css.gg.git
34 lines
559 B
CSS
34 lines
559 B
CSS
.gg-today {
|
|
display: block;
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
transform: scale(var(--ggs,1));
|
|
width: 18px;
|
|
height: 22px;
|
|
border: 2px solid;
|
|
border-radius: 3px
|
|
}
|
|
|
|
.gg-today::after,
|
|
.gg-today::before {
|
|
content: "";
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
left: 2px;
|
|
background: currentColor;
|
|
border-radius: 1px
|
|
}
|
|
|
|
.gg-today::before {
|
|
bottom: 2px;
|
|
width: 10px;
|
|
height: 10px;
|
|
opacity: .5
|
|
}
|
|
|
|
.gg-today::after {
|
|
top: 2px;
|
|
width: 6px;
|
|
height: 2px
|
|
} |