41fa65cbf5
Currently, the new table of contents is disabled by default. I will change that after several versions. ------------- * feat: Table of Content (WIP) * fix: set scratch inside define block * fix(toc): darkmode text color * feat: unify page layout, and add config to disable toc * feat: add scroll-behavior: smooth to html * fix: use <ol> for TOC. And Disable TOC by default for now * refactor: use css flexbox for article page with toc enable toc for example site * feat(i18n): add i18n entry for "Back" and "Table of Contents" * style: remove unused `keep-sidebar` class * doc: add table of contents as feature
40 lines
688 B
SCSS
40 lines
688 B
SCSS
html {
|
|
font-size: 62.5%;
|
|
overflow-y: scroll;
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
background: var(--body-background);
|
|
margin: 0;
|
|
font-family: var(--base-font-family);
|
|
font-size: 1.6rem;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
/* scrollbar styles for Firefox */
|
|
* {
|
|
scrollbar-width: auto;
|
|
scrollbar-color: var(--scrollbar-thumb) transparent;
|
|
}
|
|
/**/
|
|
|
|
/* scrollbar styles for Chromium */
|
|
::-webkit-scrollbar {
|
|
height: auto;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: var(--scrollbar-thumb);
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background-color: transparent;
|
|
}
|
|
/**/
|