Commit Graph

81 Commits

Author SHA1 Message Date
Claudio Yanes
4e1e39bff4 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.
2022-03-04 04:12:43 +00:00
Claudio Yanes
a1c6b89740 Fix fetchData
The fetchData function suffer from a race condition. If the function is
called before the promise finishes, it will result in another pair of
HTTP request. This does not only make the function useless but
Actually, it makes it harmful as the data might be redownloaded twice.

Now fetchData is not a function but rather the promise by itself.
Previous callers are expected to await the variable instead, this
should be not concern as awaiting a promise multiple time in
JavaScript is completely safe.
2022-03-04 02:25:30 +00:00
Claudio Yanes
6846d314d6 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.
2022-03-04 02:07:51 +00:00
Jacky Zhao
cf4e921ca4 fix relative pathing for dynamic fetch 2022-02-15 22:54:20 -05:00
Jacky Zhao
556d6799f2 feat: add rtl support as part of #47 2022-02-15 17:12:08 -05:00
Jacky Zhao
4dcf573fc5 visibility fix 2022-02-15 14:50:25 -05:00
Jacky Zhao
d39691e43a fix copy selection 2022-01-03 15:36:58 -05:00
Jacky Zhao
671fe795b2 popover implementation 2022-01-03 13:18:31 -05:00
Jacky Zhao
51308b20a0 fix flex gap 2022-01-02 20:02:47 -05:00
Jacky Zhao
05bee3c878 add taxonomy and term lists 2021-12-27 19:35:42 -05:00
Jacky Zhao
8b1cc8ffc1 enable last modified info 2021-12-27 17:28:53 -05:00
Jacky Zhao
64596c3742 content section 2021-12-27 15:59:19 -05:00
Jacky Zhao
3891f13e9e various font and colour fixes 2021-12-26 00:09:15 -05:00
Jacky Zhao
42a11e3f39 add makefile, fix link padding, test capitalization 2021-12-25 23:45:30 -05:00
Jacky Zhao
7858bc70cf Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo 2021-12-24 09:48:41 -05:00
Jacky Zhao
c6412ea6e4 fix config setting, fix font size for h1 in article 2021-12-23 14:40:59 -08:00
Jacky Zhao
ed93fc8b7b update subdomain docs 2021-12-23 14:21:39 -08:00
Jacky Zhao
cca56fbd2b fix relative link styling, change graph and backlinks to refer to name rather than path 2021-12-23 14:05:27 -08:00
Juaoose
b63d9c1abd remove horizontal scrollbar 2021-12-02 22:58:34 -05:00
Jacky Zhao
b80562bc37 search styling 2021-11-15 15:54:18 -08:00
Jacky Zhao
7f9444c0e8 css fixes 2021-10-27 20:10:04 -07:00
Jacky Zhao
a805f19f38 normalize search styling 2021-10-25 15:06:29 -07:00
jackyzha0
efe3932bfb Merge branch 'hugo' of https://github.com/jackyzha0/quartz into hugo 2021-08-27 14:08:18 -04:00
jackyzha0
1c851271ea add search support 2021-08-27 14:08:11 -04:00
Brecht Savelkoul
9d47dc942e Execute darkmode script before first render 2021-08-13 22:50:02 +02:00
jackyzha0
d197e19142 fix 404 styling 2021-07-19 16:30:36 -04:00
jackyzha0
35fa8d8823 better mobile support 2021-07-18 22:10:37 -04:00
jackyzha0
6896cb007b proper backlink and graph display in footer 2021-07-18 13:02:53 -04:00
jackyzha0
672a641cec fix darkmode 2021-07-18 12:06:36 -04:00
jackyzha0
ea69050587 add base pages 2021-07-18 11:54:00 -04:00
jackyzha0
c01138a81c add base structure 2021-07-18 09:35:42 -04:00