Skip to content

Commit 53e3a88

Browse files
Greatness7MasssiveJuice08magicaldave
committed
Restore our quartz customizations.
Co-authored-by: MasssiveJuice <[email protected]> Co-authored-by: Dave Corley <[email protected]>
1 parent 82bd9ec commit 53e3a88

File tree

16 files changed

+1524
-21
lines changed

16 files changed

+1524
-21
lines changed

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ node_modules
44
public
55
prof
66
tsconfig.tsbuildinfo
7-
.obsidian
7+
.obsidian/plugins
8+
.obsidian/*.json
9+
content/.obsidian/!snippets
10+
content/.obsidian/plugins
11+
content/.obsidian/*.json
812
.quartz-cache
913
private/
1014
.replit
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/* Even columns */
2+
.callout[data-callout="even-columns"] {
3+
/* Removes padding and background colour from the container */
4+
padding: 0;
5+
background-color: transparent;
6+
}
7+
.callout[data-callout="even-columns"] > .callout-content {
8+
/* Arranges the content in columns */
9+
display: grid;
10+
/* minmax sets the minimum width of a column. Make the columns 'skinnier' by setting 15rem to a smaller number */
11+
grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
12+
gap: 12px;
13+
}
14+
.callout[data-callout="even-columns"] > .callout-title {
15+
/* Hides the callout title */
16+
display: none;
17+
}
18+

0 commit comments

Comments
 (0)