Compare commits

...

4 Commits

4 changed files with 30 additions and 35 deletions

View File

@@ -75,7 +75,7 @@
flex-direction: row;
/* align-items: flex-end; */
gap: 16px;
margin: 8px 0;
margin: 4px 0 8px;
}
.title-text-container {
@@ -130,6 +130,16 @@
.title-container {
flex-direction: column;
align-items: flex-start;
gap: 4px;
}
.date-container {
align-items: flex-start;
}
.date {
font-size: 0.9rem;
line-height: 1.2rem;
}
}
</style>

View File

@@ -16,7 +16,12 @@
</div>
<div class="entry-text-container">
<p class="entry-title">{post.post.title}</p>
<p class="entry-date">::&nbsp;{post.post.date}</p>
<p class="entry-date">
::&nbsp;{post.post.date}
{#if post.post.dateUpdated}
// {post.post.dateUpdated}
{/if}
</p>
<p class="entry-description">{post.post.description}</p>
<div class="entry-tag-container">
{#each post.post.tags as tag}

View File

@@ -112,6 +112,7 @@
<div class="sidebox-container">
<h4 class="sidebox-header">heads-up</h4>
<p>This website works best on Firefox and other Gecko-based browsers! All pages <i>should</i> be responsive and work on mobile.</p>
<p>This website is 100% mobile-friendly or at least trying to be!</p>
<hr>
@@ -136,9 +137,10 @@
<hr>
<div class="split-container">
<div class="link-container">
<h4 class="update-header">links to elsewhere</h4>
<div class="webring-container">
<h4 class="update-header">webrings</h4>
<div class="webring">
<iframe title="bucket webring" id="bucket-webring" style="width: 100%; height: 3rem; border: none;" src="https://webring.bucketfish.me/embed.html?name=denizk0461"></iframe>
</div>
@@ -165,8 +167,6 @@
</div>
<div class="button-container">
<h4 class="update-header">button corner</h4>
<div class="button-subcontainer">
{#each buttons as button}
<IndieButton button={button} />
{/each}
@@ -174,7 +174,6 @@
<p>to be expanded!</p>
<p class="small-supertext">my own 88x31 button is in the making. ETA: ???</p>
</div>
</div>
</Content>
<style>
@@ -183,31 +182,14 @@
grid-template-columns: 3fr 1fr;
}
.split-container {
width: 100%;
display: flex;
flex-direction: row;
gap: 8px;
margin: 16px 0;
}
@media screen and (max-width: 900px) {
.split-container {
flex-direction: column;
gap: 8px;
}
}
.button-container {
flex: 2;
}
.button-subcontainer {
.button-container {
display: flex;
flex-wrap: wrap;
gap: 8px;
justify-content: center;
align-content: center;
}
.webring {

View File

@@ -109,10 +109,12 @@
<Content>
<Banner2
title="About"
title="About Me & natconf.dev"
banner="/me.webp"
bannerAlt="Mirror picture of me, pixelated beyond recognition"
subtitle="If you'd like to learn more about me and my website"
date="2025-08-10"
dateUpdated="2026-03-26"
pixelated />
<TableOfContents />
@@ -198,10 +200,6 @@
<p>When I was recently replaying the original Ratchet & Clank (2002) in German, I noticed again that the dialogue translated into German is often longer than the original English dialogue, which makes characters' voice lines run into one another. This doesn't happen in the English original.</p>
<p>This is most noticeable in the cutscene that plays after you acquire the Hologuise on planet Kalebo III, where <a href="https://youtu.be/XIShUN7AUqg?t=3479">the narrator explains how the Hologuise works</a>. The narrations lags WAY behind the visuals, to the point that there's a brief black screen at the end while the narration is still ongoing, and then it just cuts off the narrator entirely.</p>
<hr>
<p><i>Last updated: 2026-03-26</i></p>
</Content>
<style>