Compare commits

...

2 commits

Author SHA1 Message Date
22c1cb29dd Normalize Cambria's font size, it's kinda small! 2024-09-25 20:50:44 -07:00
88740d6e44 Support arguments for _bin/serve.sh
Specifically, I wanted to run on a different port today!
2024-09-25 20:50:28 -07:00
2 changed files with 3 additions and 1 deletions

View file

@ -1,2 +1,2 @@
#!/usr/bin/env bash #!/usr/bin/env bash
bundle exec jekyll serve bundle exec jekyll serve $@

View file

@ -3,6 +3,7 @@
--ui-font-family: system-ui, sans-serif; --ui-font-family: system-ui, sans-serif;
--heading-font-family: Delicious, system-ui, sans-serif; --heading-font-family: Delicious, system-ui, sans-serif;
--body-font-family: Charter, "Bitstream Charter", "Sitka Text", Cambria, serif; --body-font-family: Charter, "Bitstream Charter", "Sitka Text", Cambria, serif;
--body-font-size-adjust: 0.5; /* Cambria is kinda small! */
} }
body { body {
@ -115,6 +116,7 @@ article {
> :is(p, ul) { > :is(p, ul) {
font-family: var(--body-font-family); font-family: var(--body-font-family);
font-size-adjust: var(--body-font-size-adjust);
line-height: 1.4; line-height: 1.4;
} }