mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-31 00:34:05 -06:00
Quartz sync: Jan 13, 2024, 11:34 PM
This commit is contained in:
parent
0b2a2c8b47
commit
b95ab7e808
@ -3,7 +3,8 @@ title: 01/24 - Summary of Changes
|
|||||||
draft: false
|
draft: false
|
||||||
tags:
|
tags:
|
||||||
- "#update"
|
- "#update"
|
||||||
date: 2024-01-01
|
date: 2024-01-03
|
||||||
|
lastmod: 2024-01-31
|
||||||
---
|
---
|
||||||
## Housekeeping
|
## Housekeeping
|
||||||
I feel like I finally have a handle on the feel of this site. Front page looks very polished now, and I got around to drawing a great-looking and really symbolic logo:
|
I feel like I finally have a handle on the feel of this site. Front page looks very polished now, and I got around to drawing a great-looking and really symbolic logo:
|
||||||
|
|||||||
@ -1 +0,0 @@
|
|||||||
/home/b/Documents/Obsidian/Notes/Garden
|
|
||||||
@ -4,7 +4,7 @@ import * as Plugin from "./quartz/plugins"
|
|||||||
const config: QuartzConfig = {
|
const config: QuartzConfig = {
|
||||||
configuration: {
|
configuration: {
|
||||||
defaultDateType: "modified",
|
defaultDateType: "modified",
|
||||||
pageTitle: "🌱 Projects & Privacy",
|
pageTitle: "🌱 Projects 🌑 Privacy",
|
||||||
enableSPA: true,
|
enableSPA: true,
|
||||||
enablePopovers: true,
|
enablePopovers: true,
|
||||||
analytics: null,
|
analytics: null,
|
||||||
|
|||||||
@ -1,18 +1,35 @@
|
|||||||
@use "./base.scss";
|
@use "./base.scss";
|
||||||
|
|
||||||
// put your custom CSS here!
|
// Pseudo-element for the transparent background cover moon
|
||||||
$backg: "/static/moon-light.png";
|
|
||||||
|
|
||||||
[saved-theme="dark"] body::before {
|
[saved-theme="dark"] body::before {
|
||||||
filter: invert(100%);
|
filter: invert(100%);
|
||||||
|
opacity: 0.03;
|
||||||
|
}
|
||||||
|
body::before {
|
||||||
|
pointer-events: none;
|
||||||
|
filter: invert(0%);
|
||||||
|
content: url("/moon-light.png");
|
||||||
|
position: fixed;
|
||||||
|
top: -400px;
|
||||||
|
left: -300px;
|
||||||
|
transform: scale(0.67);
|
||||||
|
// content: "";
|
||||||
|
// background-image: url("/static/moon-light.png");
|
||||||
|
opacity: 0.04;
|
||||||
}
|
}
|
||||||
|
|
||||||
body::before {
|
// Specifically the first part of the index page with the moon
|
||||||
filter: invert(0%);
|
[saved-theme="dark"] body[data-slug="index"] img[src="./moon-light.png"] {
|
||||||
content: url("/static/moon-light.png");
|
filter: invert(100%);
|
||||||
position: absolute;
|
}
|
||||||
top: 0px;
|
body[data-slug="index"] img {
|
||||||
left: 0px;
|
float: left;
|
||||||
opacity: 0.03;
|
margin-left: initial;
|
||||||
overflow: auto;
|
width: 30%;
|
||||||
|
filter: invert(0%);
|
||||||
|
}
|
||||||
|
|
||||||
|
body[data-slug="index"] blockquote[class="callout"][data-callout="tip"] {
|
||||||
|
margin: 5em 3em;
|
||||||
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user