]> git.otsuka.systems Git - cotsuka.github.io/commitdiff
fix font styling, syntax highlighting, consistency
authorCameron Otsuka <cameron@otsuka.haus>
Thu, 19 Jun 2025 20:08:34 +0000 (13:08 -0700)
committerCameron Otsuka <cameron@otsuka.haus>
Thu, 19 Jun 2025 20:08:34 +0000 (13:08 -0700)
astro.config.mjs
content/links/build-weekly-roundup-2025-week-4.mdx [moved from content/links/were-ripping-off-the-cuff-about-dollar-rallying-rates-stargate-and-deepseek-listen-in.mdx with 89% similarity]
content/links/build-weekly-roundup-2025-week-5.mdx
src/components/ui/figure.astro
src/styles/style.css

index 1bb8d8efd257fc4225a9137e6ed02083d54258b6..16610067b5637b72e569f45cb29ff07248aa7262 100644 (file)
@@ -8,4 +8,9 @@ export default defineConfig({
   site: 'https://otsuka.haus',
   trailingSlash: 'always',
   integrations: [mdx(), sitemap()],
+  markdown: {
+    shikiConfig: {
+      theme: 'monokai'
+    },
+  },
 });
\ No newline at end of file
similarity index 89%
rename from content/links/were-ripping-off-the-cuff-about-dollar-rallying-rates-stargate-and-deepseek-listen-in.mdx
rename to content/links/build-weekly-roundup-2025-week-4.mdx
index 714839d46c2a98b4bc3e12272e9a8369a482ab7c..8aba741f32c4c4825e5bcea6e0a2b131b741aa38 100644 (file)
@@ -2,8 +2,8 @@
 title: "we're ripping off-the-cuff about dollar rallying, rates, stargate, and deepseek. listen in ðŸ‘‡"
 href: https://x.com/CameronOtsuka/status/1882563050374631488
 date: 2025-01-23
-modified: 2025-01-30
-description: Build Weekly Roundup 2025-01-23
+modified: 2025-06-19
+description: "Build Weekly Roundup - 2025 Week #4"
 tags:
 - video
 - ai
index 74cb3565a324b1ab949447c6ec0d680f8ff318b7..10a4a9556f42659fe4221b90c51e5012a6b2bb09 100644 (file)
@@ -1,9 +1,9 @@
 ---
-title: "Build Weekly Roundup - 2025 Week #5"
+title: Yield curve updates, looking forward to Yen meeting, more DeepSeek analysis
 href: https://x.com/CameronOtsuka/status/1885111055158042704
 date: 2025-01-30
-modified: 2025-01-30
-description: Yield curve updates, looking forward to Yen meeting, more DeepSeek analysis
+modified: 2025-06-19
+description: "Build Weekly Roundup - 2025 Week #5"
 tags:
 - video
 - ai
index 06c2ff09649d47db3217171578ff9b3114d2b27e..02070f113c40eda039402c16efeb9e44c2091cd5 100644 (file)
@@ -21,9 +21,6 @@ const { image, alt, formats = ['avif', 'webp'] } = Astro.props;
     figcaption {
         font-size: 0.8rem;
     }
-    img {
-        height: auto;
-    }
     figcaption {
         font-style: italic;
     }
index cc8058f617521b14184788bb74687dd1b8b079a4..65acc7578f0ba58e6178193c867a19c88435d47b 100644 (file)
@@ -1,7 +1,9 @@
 html {
   background-color: #ffffff;
   color: #000000;
-  font-family: "Public Sans", sans-serif;
+  font-family: "Public Sans Variable", sans-serif;
+  font-feature-settings: "kern" 1, "kern";
+  font-kerning: normal;
   font-weight: 400;
   font-size: 100%;
   line-height: 1.1rem;
@@ -39,6 +41,9 @@ menu ul, menu ol, menu dl, menu menu {
   /* nested lists won't have margins*/
   margin-bottom: 0;
 }
+img {
+  height: auto;
+}
 dd {
   margin-bottom: 0.2rem;
   padding-left: 1.5rem;
@@ -50,6 +55,8 @@ blockquote {
 }
 table {
   margin-bottom: 1rem;
+  margin-left: auto;
+  margin-right: auto;
   border: 0.1rem solid;
   border-collapse: collapse;
 }
@@ -58,4 +65,12 @@ th, td {
   text-align: center;
   vertical-align: middle;
   padding: 0.5rem;
+}
+code {
+  font-family: "Source Code Variable", monospace;
+}
+.astro-code, .astro-code span {
+  font-family: "Source Code Variable", monospace;
+  margin-bottom: 1rem;
+  padding: 0.1rem;
 }
\ No newline at end of file