changed fonts; changed colour for project n5 devlogs to red; added page for next devlog with new banner

This commit is contained in:
2025-04-27 16:51:48 +02:00
parent c8e3fa3f70
commit 972efca6af
23 changed files with 155 additions and 26 deletions

View File

@@ -22,11 +22,11 @@
</div>
<div class="text-container">
<h1 class="title">{title}</h1>
{#if date}
<p class="date">{date}</p>
{/if}
{#if subtitle}
<p class="subtitle">{subtitle}</p>
<p class="subtitle">[ {subtitle} ]</p>
{/if}
{#if date}
<p class="date">» {date}</p>
{/if}
</div>
</div>
@@ -51,6 +51,7 @@
.img-container {
flex-grow: 1;
width: 50%;
}
.text-container {
@@ -76,10 +77,18 @@
}
.date {
font-family: var(--font-title);
font-weight: 800;
font-size: 1.3rem;
margin-top: 0;
color: var(--color-highlight);
}
.subtitle {
/* font-style: italic; */
font-style: italic;
font-family: var(--font-mono);
font-weight: 800;
font-size: 1.3rem;
margin-top: 0;
}
</style>