From 63e0b7d448a97eac9abe16fbd84dbb9727e716d0 Mon Sep 17 00:00:00 2001 From: Cassidy Williams Date: Tue, 18 Oct 2022 18:09:10 -0500 Subject: [PATCH] Update styles --- src/global.css | 10 ++++++++++ src/pages/about.md | 4 ++-- src/pages/posts.astro | 7 ------- src/pages/tag/[tag].astro | 4 ---- 4 files changed, 12 insertions(+), 13 deletions(-) diff --git a/src/global.css b/src/global.css index 70634ea..fac6297 100644 --- a/src/global.css +++ b/src/global.css @@ -69,6 +69,11 @@ nav a:not(:last-child) { padding: 0 12px 0 0; } +ul { + list-style-type: none; + padding: unset; +} + .post { margin: 0 0 30px 0; } @@ -87,6 +92,11 @@ nav a:not(:last-child) { font-weight: bold; } +.tag-home { + margin-right: 10px; + color: var(--gray); +} + textarea { width: 100%; font-size: 16px; diff --git a/src/pages/about.md b/src/pages/about.md index a79a115..d15b9a5 100644 --- a/src/pages/about.md +++ b/src/pages/about.md @@ -1,7 +1,7 @@ I'm Cassidy, and I like to make memes and dreams and software. -When I’m not working, I like to watch movies, play music, eat a lot, practice Spanish, and salsa dance. I like brainstorming projects that I build maybe half the time. It's nice to dream. +When I’m not working, I like to watch movies, play music, eat a lot, practice Spanish, and play games. I like brainstorming projects that I build maybe half the time. It's nice to dream. You should check out my website, [cassidoo.co](https://cassidoo.co), my [newsletter](https://cassidoo.co/newsletter), or my [GitHub profile](https://github.com/cassidoo). Or don’t. I’m not your mother. -Anyway, welcome to my blog AKA digital garden AKA mind dump land! \ No newline at end of file +Anyway, welcome to my blog AKA digital garden AKA mind dump land! diff --git a/src/pages/posts.astro b/src/pages/posts.astro index 655ccb4..6354617 100644 --- a/src/pages/posts.astro +++ b/src/pages/posts.astro @@ -18,16 +18,9 @@ const posts = (await Astro.glob('../posts/*.{md,mdx}')).sort( diff --git a/src/pages/tag/[tag].astro b/src/pages/tag/[tag].astro index 6fa578c..57b9b5e 100644 --- a/src/pages/tag/[tag].astro +++ b/src/pages/tag/[tag].astro @@ -40,10 +40,6 @@ const { tag: currentTag } = Astro.params;