diff options
| -rw-r--r-- | content/_index.html | 19 | ||||
| -rw-r--r-- | themes/aoidh/assets/aoidh.css | 5 |
2 files changed, 15 insertions, 9 deletions
diff --git a/content/_index.html b/content/_index.html index 79ed89a..2797060 100644 --- a/content/_index.html +++ b/content/_index.html @@ -4,11 +4,12 @@ date: 2025-12-23T17:12:55-03:30 draft: false --- -<blockquote><code> -/* _nop() has been deprecated; use __nop() */<br> -#define _nop() __nop() -</code> -<cite>—excerpt from <a href="https://www.microchip.com/en-us/tools-resources/develop/mplab-xc-compilers/xc8"><span class="mono">pic.h</span></a></cite> +<blockquote> + <code> + /* _nop() has been deprecated; use __nop() */<br> + #define _nop() __nop() + </code> + <cite>—excerpt from <a href="https://www.microchip.com/en-us/tools-resources/develop/mplab-xc-compilers/xc8"><span class="mono">pic.h</span></a></cite> </blockquote> <h1 id="about">About</h1> @@ -91,6 +92,10 @@ draft: false <h1 id="biography">Biography</h1> <img style="width: 16rem;" src="img/headshot.jpg" alt="Headshot of Sam Anthony"> <p> - Sam Anthony is a computer programmer from Newfoundland, Canada. - TODO + I'm a computer programmer from Newfoundland, Canada. + I was born in 2004. </p> +<blockquote> + To state my life .plan in a single sentence: “I want to write the best software I can.” There isn't even a close second place. + <cite>—John Carmack, <a href="https://raw.githubusercontent.com/ESWAT/john-carmack-plan-archive/refs/heads/master/by_day/johnc_plan_19970707.txt">1997</a></cite> +</blockquote> diff --git a/themes/aoidh/assets/aoidh.css b/themes/aoidh/assets/aoidh.css index b2037a6..1bb2325 100644 --- a/themes/aoidh/assets/aoidh.css +++ b/themes/aoidh/assets/aoidh.css @@ -9,7 +9,7 @@ --pagewidth: 60rem; --textwidth: 45rem; - --parspace: .6em; + --parspace: .5em; --letter-page-width: 8.5in; --letter-page-height: 11in; @@ -30,7 +30,7 @@ body { body { font-family: 'IBM Plex Serif', Charter, 'Bitstream Charter', 'Sitka Text', serif; font-weight: 400; - line-height: 1.35em; + line-height: 1.3em; text-rendering: optimizeLegibility; color: #000; background: #fff; @@ -198,6 +198,7 @@ img { max-height: 90vh; border: 1px solid var(--dark-gray); box-shadow: .2rem .2rem var(--light-gray); + margin-bottom: var(--parspace); } div { |