feat: Added featured post
All checks were successful
Deploy Blog to Folder / deploy (push) Successful in 4s

This commit is contained in:
2025-08-23 13:39:09 -04:00
parent c25f32592b
commit 509b398b6d
3 changed files with 24 additions and 5 deletions

View File

@ -126,6 +126,7 @@ main > :last-child {
object-fit: cover;
object-position: center;
width: 100%;
border: 4px solid white;
}
.featured > h1,
.about > h1 {
@ -151,6 +152,14 @@ main > :last-child {
font-weight: 300;
margin-top: 1rem;
}
.featured .featured-text {
display: flex;
flex-direction: column;
}
.featured-text span {
color: rgba(var(--black), .56);
font-size: .85rem;
}
.about > div {
margin-top: 2rem;
@ -226,4 +235,7 @@ main > :last-child {
text-align: end;
padding-left: 2rem;
}
.featured > div > div {
width: 50%;
}
}