new blog structure

This commit is contained in:
Jorijn van der Graaf 2025-11-12 22:40:33 +01:00
commit dd847ce1f9
3 changed files with 42 additions and 2 deletions

View file

@ -249,6 +249,39 @@ main {
cursor: pointer;
}
/* Blog Post Page Styles (Natural Page View) */
.blog-post-page {
max-width: 800px;
margin: 0 auto;
padding: 2rem 1.5rem;
}
.blog-post-page .post-header {
margin-bottom: 2rem;
text-align: center;
padding-bottom: 1.5rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.blog-post-page .post-title {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.blog-post-page .post-date {
font-size: 1.2rem;
padding: 0.75rem 1.5rem;
border-radius: 25px;
}
.blog-post-page .post-content {
font-size: 1.2rem;
line-height: 1.8;
color: var(--text-color);
animation: none;
opacity: 1;
}
/* Footer */
footer {
background-color: var(--dark-color);