mirror of
https://github.com/jeessy2/ddns-go.git
synced 2025-10-20 15:33:46 +08:00
43 lines
788 B
CSS
43 lines
788 B
CSS
/* From https://css.gg */
|
|
|
|
.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
|
|
}
|