rizaldy.club/quartz/components/styles/darkmode.scss

47 lines
678 B
SCSS
Raw Normal View History

2023-06-07 09:48:37 +07:00
.darkmode {
cursor: pointer;
padding: 0;
2023-06-07 09:48:37 +07:00
position: relative;
background: none;
border: none;
2023-06-19 00:47:07 +07:00
width: 20px;
height: 20px;
margin: 0 10px;
text-align: inherit;
2023-06-07 09:48:37 +07:00
& svg {
position: absolute;
width: 20px;
height: 20px;
top: calc(50% - 10px);
fill: var(--darkgray);
transition: opacity 0.1s ease;
}
}
2023-09-18 00:29:20 +07:00
:root[saved-theme="dark"] {
color-scheme: dark;
}
:root[saved-theme="light"] {
color-scheme: light;
}
:root[saved-theme="dark"] .darkmode {
2023-06-07 09:48:37 +07:00
& > #dayIcon {
display: none;
2023-06-07 09:48:37 +07:00
}
& > #nightIcon {
display: inline;
2023-06-07 09:48:37 +07:00
}
}
:root .darkmode {
2023-06-07 09:48:37 +07:00
& > #dayIcon {
display: inline;
2023-06-07 09:48:37 +07:00
}
& > #nightIcon {
display: none;
2023-06-07 09:48:37 +07:00
}
}