mirror of https://github.com/astrit/css.gg.git
40 lines
741 B
CSS
40 lines
741 B
CSS
.gg-dark-mode {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
display: block;
|
|
transform: scale(var(--ggs,1));
|
|
border:2px solid;
|
|
border-radius:100px;
|
|
width:20px;
|
|
height:20px
|
|
}
|
|
|
|
.gg-dark-mode::after,
|
|
.gg-dark-mode::before {
|
|
content: "";
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
display: block
|
|
}
|
|
|
|
.gg-dark-mode::before {
|
|
border:5px solid;
|
|
border-top-left-radius:100px;
|
|
border-bottom-left-radius:100px;
|
|
border-right: 0;
|
|
width:9px;
|
|
height:18px;
|
|
top:-1px;
|
|
left:-1px
|
|
}
|
|
|
|
.gg-dark-mode::after {
|
|
border:4px solid;
|
|
border-top-right-radius:100px;
|
|
border-bottom-right-radius:100px;
|
|
border-left: 0;
|
|
width:4px;
|
|
height:8px;
|
|
right:4px;
|
|
top:4px
|
|
} |