mirror of
https://gitlab.com/MisterBiggs/brain-quartz.git
synced 2025-08-16 18:34:56 +00:00
.github
content
quartz
components
scripts
styles
backlinks.scss
clipboard.scss
darkmode.scss
graph.scss
legacyToc.scss
popover.scss
search.scss
toc.scss
ArticleTitle.tsx
Backlinks.tsx
Body.tsx
Content.tsx
Darkmode.tsx
Graph.tsx
Head.tsx
Header.tsx
PageTitle.tsx
ReadingTime.tsx
Search.tsx
Spacer.tsx
TableOfContents.tsx
TagList.tsx
index.ts
types.ts
plugins
processors
static
styles
bootstrap-cli.mjs
bootstrap-worker.mjs
build.ts
cfg.ts
log.ts
path.ts
perf.ts
resources.tsx
theme.ts
worker.ts
.gitignore
.prettierrc
CODE_OF_CONDUCT.md
LICENSE.txt
README.md
globals.d.ts
index.d.ts
package-lock.json
package.json
quartz.config.ts
tsconfig.json
tsconfig.tsbuildinfo
28 lines
383 B
SCSS
28 lines
383 B
SCSS
details#toc {
|
|
& summary {
|
|
cursor: pointer;
|
|
|
|
&::marker {
|
|
color: var(--dark);
|
|
}
|
|
|
|
& > * {
|
|
padding-left: 0.25rem;
|
|
display: inline-block;
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
& ul {
|
|
list-style: none;
|
|
margin: 0.5rem 1.25rem;
|
|
padding: 0;
|
|
}
|
|
|
|
@for $i from 1 through 6 {
|
|
& .depth-#{$i} {
|
|
padding-left: calc(1rem * #{$i});
|
|
}
|
|
}
|
|
}
|