Update styles

This commit is contained in:
Cassidy Williams
2022-10-18 18:09:10 -05:00
parent fe83c6b7a4
commit 63e0b7d448
4 changed files with 12 additions and 13 deletions

View File

@@ -69,6 +69,11 @@ nav a:not(:last-child) {
padding: 0 12px 0 0; padding: 0 12px 0 0;
} }
ul {
list-style-type: none;
padding: unset;
}
.post { .post {
margin: 0 0 30px 0; margin: 0 0 30px 0;
} }
@@ -87,6 +92,11 @@ nav a:not(:last-child) {
font-weight: bold; font-weight: bold;
} }
.tag-home {
margin-right: 10px;
color: var(--gray);
}
textarea { textarea {
width: 100%; width: 100%;
font-size: 16px; font-size: 16px;

View File

@@ -1,6 +1,6 @@
I'm Cassidy, and I like to make memes and dreams and software. I'm Cassidy, and I like to make memes and dreams and software.
When Im 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 Im 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 dont. Im not your mother. 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 dont. Im not your mother.

View File

@@ -18,16 +18,9 @@ const posts = (await Astro.glob('../posts/*.{md,mdx}')).sort(
<head> <head>
<BaseHead title={SITE_TITLE} description={SITE_DESCRIPTION} /> <BaseHead title={SITE_TITLE} description={SITE_DESCRIPTION} />
<style> <style>
ul {
list-style-type: none;
padding: unset;
}
ul li { ul li {
display: flex; display: flex;
} }
ul li a:visited {
color: #8e32dc;
}
</style> </style>
</head> </head>
<body> <body>

View File

@@ -40,10 +40,6 @@ const { tag: currentTag } = Astro.params;
<head> <head>
<BaseHead title={SITE_TITLE} description={SITE_DESCRIPTION} /> <BaseHead title={SITE_TITLE} description={SITE_DESCRIPTION} />
<style> <style>
ul {
list-style-type: none;
padding: unset;
}
ul li { ul li {
display: flex; display: flex;
} }