Snippets Library

A collection of reusable code snippets that I use frequently or find useful.

My Custom CSS for Pagecord

/* Center the top navigation */
nav {
justify-content: center;
}

/* Stack the avatar and title in the center */
.avatar-container {
flex-direction: column;
align-items: center;
}

/* Center the bio text below the title */
.bio {
text-align: center;
}

/* Add text to the reply to email button */
.reply-by-email::after {
content: "Reply";
margin-inline-start: 0.25em;
}

/* Add text to the upvote button */
.upvote::after {
content: "Like";
margin-inline-start: 0.25em;
}