first commit

This commit is contained in:
2025-11-06 14:46:05 -08:00
commit d573e8355c
194 changed files with 6460 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
/*
This is just a placeholder blank stylesheet so as to support adding custom styles budled with theme's default styles
Read https://github.com/adityatelange/hugo-PaperMod/wiki/FAQs#bundling-custom-css-with-themes-assets for more info
*/

View File

@@ -0,0 +1,35 @@
/* Body and headings */
body { font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif; }
h1,h2,h3,h4 { font-family: "Source Serif 4", ui-serif, Georgia, serif; }
/* Brand accent + links */
a { color: #163b8e; }
a:hover { color: #27b7c4; }
/* Card/list accents (safe generic selectors) */
.post-entry, .archive-entry, .post-content blockquote {
border-color: #27b7c4;
}
/* Bio Block */
.bio-block {
display: flex;
align-items: center;
gap: 1.2rem;
margin-top: 2rem;
flex-wrap: wrap;
}
.bio-photo {
width: 100px;
height: 100px;
border-radius: 50%;
object-fit: cover;
box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}
.bio-text {
max-width: 60ch;
font-size: 1.05em;
line-height: 1.6;
}