50 Commits (d80f6946c854365336062f71f0c922fb42beea54)

Author SHA1 Message Date
Jacky Zhao e9aa6ae9e7 feat: docker docs, semantic search alpha 2 years ago
SafEight de2b6b9a1b
feat: Replace == with <mark> (#234)
Co-authored-by: SAF <saf@saf.saf>
2 years ago
Charles Chamberlain 3409a49f15
fix: Apply monospace style to all meta in a popover (#216) 2 years ago
Jacky Zhao 2145e92b00 fix: make latex rendering size more simialr to obsidian 2 years ago
Jacky Zhao 83e7aec3c9 fix: tag list styling 2 years ago
Youssif Shaaban Alsager 25ba1159ad
feat: Add internationalization (i18n) support (#182) 2 years ago
Jacky Zhao a78926ede5 feat: link previews to page-list (closes #173) 2 years ago
Jacky Zhao 5c76d8dad9 fix: make callout detection case-insensitive (closes #171) 2 years ago
Jacky Zhao ff770927fd
style: _callouts.scss simplification (#169) 2 years ago
Jacky Zhao 234c707a93 docs: improve scss structure and admonition styling, update docs 2 years ago
Emile Bangma 728d8529ec
Support Admonition callouts (#166) (closes #88) 2 years ago
Jacky Zhao dff5ae0d4d style: improve header anchor styling 2 years ago
Jacky Zhao b2555ced61 feat: add description section to section/term/taxonomies, fix header margin 2 years ago
Jacky Zhao 7ccff2cf3d fix: styling on page-list for smaller screens 2 years ago
Jacky Zhao e0b6606d50 fix: make section-li scss more generic 2 years ago
Jacky Zhao d7a42a2fd7 feat: improve styling for lists, fix anchor offset 2 years ago
Jacky Zhao 422b6cc25b feat: css typography improvements 2 years ago
Jacky Zhao 22c8981bb9 feat: css refactor for easy font change 2 years ago
Jacky Zhao ffe22689eb feat: use floating-ui for better popover positioning 2 years ago
Jacky Zhao c1b8fe1221 feat: restyle search icon 2 years ago
Jacky Zhao b7a619bbd7 fix: tabsize not being respected 2 years ago
Geoffrey Garrett f54df35767
Copy to clipboard feature for code block (#152)
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
2 years ago
Jacky Zhao a8137edf24 fix: adjust weird colours for err highlighting 2 years ago
Geoffrey Garrett d3e20b8b94
Added optional rendering of code block titles (#148) 2 years ago
Jacky Zhao 8b2fba895a feat: image scaling (closes #131) 2 years ago
Aiden Bai ae240ff82c
Remove redundant CSS rule 3 years ago
Aiden Bai 44984cdaf4
Add support for progress bar 3 years ago
Jacky Zhao 0293c12217 feat: recent posts section/partial 3 years ago
Jacky Zhao 0b6711c218 fix: tag boxes overlapping for content with many tags (closes #130) 3 years ago
Jacky Zhao ed9a8efd1f fix inline link highlighting, safer latex render 3 years ago
Jacky Zhao e302f6c423 fix: more generic style to match bad nesting generated by popover interp 3 years ago
Jacky Zhao cea0f3eb74 feat: contextual backlinks (closes #106) 3 years ago
Jacky Zhao fc89ff2680 fix: broken semi and graph min-height 3 years ago
Jacky Zhao b8a660e208 feat: copyable header anchors (fixes #86) 3 years ago
Jacky Zhao 87b5a7a251 feat: show graph titles on zoom (fixes #92) 3 years ago
Jacky Zhao c8d390dbc5 fix: always hide popover on mobile (fixes #104) 3 years ago
Jacky Zhao f05ff5e62d fix: add dropshadow to popover, cleanup animation 3 years ago
Jacky Zhao 12ed9722d8 fix: popover selection wrongly including line breaks 3 years ago
Jacky Zhao 7808c66c4d fix: align footer links 3 years ago
meleu 671fe05312
padding and border-radius matching bottom cards
Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
3 years ago
meleu a287d11246 add a collapsible ToC 3 years ago
Jacky Zhao cc86136bcb feat: basic latex support 3 years ago
Jacky Zhao 8e083d4a93
Merge pull request #83 from meleu/patch-2 3 years ago
meleu a469653f75 separate contact links semantically 3 years ago
Jacky Zhao c51573efa9 feat: grey out broken links 3 years ago
Jacky Zhao 3674df48b8 fix pagination styling 3 years ago
Claudio Yanes f70128a3de
Prevent overflow of long links and words
When a word (or any string withtout breakpoints (spaces, dashes....), making links the most common place where this becamoes an issue)  is wider than its container, the text will simply overflow any container, including the viewport. This commit fixes this behaviour by making the word-drap strategy of the browser more aggresive.
3 years ago
Claudio Yanes b96c60edfc Merge branch 'hugo' of https://github.com/jackyzha0/quartz into jackyzha0-hugo 3 years ago
Claudio Yanes dc9b421e21 Remove unnecessary scrollbars
The margin property can escape the parent node and move it alongside
its child. This happens with singlePage div and the body, resulting in
scrollbars appearing as the body has the size of the viewport but
does not align with it. This phenomenon can be always observed
in the vertical axis and it can also be observed in the horizontal axis
when the viewport it’s not wide enough (mostly in mobile).

Using paddings prevents this “extra space” from scraping and displacing
the body.

Also, the value 100vw does not take into account the space taken by the
vertical scrollbar, thus making the body wider than the actual viewport,
producing a horizontal scrollbar.
3 years ago
Claudio Yanes 1313bd9779 Move css and js to appropriate files
Having the CSS and JS in the html template produces pages larger
than necessary, as each page need to contain all the js/css.
Separating them in appropriate files allow the browser to just download
them once and use them for all the pages. This is even more effective
with an aggressive cache policy for the js and css, something that can
be done without fear thanks to the implemented cache-busting.
Also, having then in separate files allows us to use Hugo pipelines
for minimizing the code.
3 years ago