Quartz sync: Jan 13, 2024, 7:32 PM
BIN
quartz/static/icon-back.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 24 KiB |
BIN
quartz/static/moon-light.png
Normal file
|
After Width: | Height: | Size: 1.5 MiB |
BIN
quartz/static/og-image-back.png
Normal file
|
After Width: | Height: | Size: 38 KiB |
|
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 335 KiB |
@ -1,3 +1,23 @@
|
||||
@use "./base.scss";
|
||||
|
||||
// put your custom CSS here!
|
||||
$backg: "/static/moon-light.png";
|
||||
|
||||
[saved-theme="dark"] body::before {
|
||||
filter: invert(100%);
|
||||
opacity: 0.05;
|
||||
}
|
||||
|
||||
body::before {
|
||||
filter: invert(0%);
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
right: 0px;
|
||||
bottom: 0px;
|
||||
left: 0px;
|
||||
background-image: url("/static/moon-light.png");
|
||||
background-size: 125%;
|
||||
opacity: 0.1;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||