fixed font link for subpages; reduced width of devlog posts; reduced height of banner; removed old banner

This commit is contained in:
2025-12-30 19:03:57 +00:00
parent 3e90dbdc80
commit b8ed25ae65
10 changed files with 220 additions and 119 deletions

View File

@@ -81,7 +81,7 @@
.subcontainer {
max-width: 1600px;
height: 600px;
height: 500px;
display: flex;
flex-direction: row;
margin-left: auto;

View File

@@ -1,81 +0,0 @@
<script lang="ts">
import SeparatorLine from "./separator-line.svelte";
let {
title,
subtitle = "",
banner = "",
bannerAlt = "",
}: {
title: string;
subtitle?: string;
banner?: string;
bannerAlt?: string;
} = $props();
</script>
<div class="container notched">
<img src="{banner}" alt="{bannerAlt}">
<h1 class="title">{title}</h1>
</div>
{#if subtitle}
<h1 class="subtitle">» {subtitle}</h1>
{/if}
<SeparatorLine />
<style>
.container {
position: relative;
}
.container img {
position: absolute;
left: 0;
top: 0;
object-fit: cover;
}
.container, .container img {
height: 500px;
width: 100%;
}
.title {
font-family: var(--font-title);
font-size: 2.4rem;
line-height: 2.7rem;
position: absolute;
width: 100%;
box-sizing: border-box;
height: fit-content;
padding: 12px 24px;
left: 0;
right: 0;
bottom: 0px;
font-weight: 900;
background-image: linear-gradient(to right, #1b1b1bFF, #1b1b1bBF);
}
.subtitle {
padding-left: 24px;
font-size: 2.2rem;
line-height: 2.5rem;
}
@media screen and (max-width: 800px) {
.container, .container img {
height: 300px;
}
.title {
font-size: 1.6rem;
line-height: 1.8rem;
}
.subtitle {
font-size: 1.2rem;
line-height: 1.4rem;
}
}
</style>

162
src/lib/banner2.svelte Normal file
View File

@@ -0,0 +1,162 @@
<script lang="ts">
import SeparatorLine from "./separator-line.svelte";
let {
title,
date = "",
subtitle = "",
banner = "",
bannerAlt = "",
pixelated,
}: {
title: string;
date?: string;
subtitle?: string;
banner?: string;
bannerAlt?: string;
pixelated?: boolean;
} = $props();
</script>
<div class="container">
<div class="subcontainer">
<div class="img-container">
{#if banner}
{#if pixelated}
<img class="banner pixelated-img" src="{banner}" alt="{bannerAlt}">
{:else}
<img class="banner" src="{banner}" alt="{bannerAlt}">
{/if}
{/if}
<div class="text-container">
{@render titles({title, subtitle, date})}
</div>
</div>
</div>
<!-- {#if banner}
<div class="subcontainer">
<div class="img-container">
{#if pixelated}
<img class="pixelated-img" src="{banner}" alt="{bannerAlt}">
{:else}
<img src="{banner}" alt="{bannerAlt}">
{/if}
</div>
<div class="text-container">
{@render titles({title, subtitle, date})}
</div>
</div>
{:else}
<div class="subcontainer">
<div class="text-container">
{@render titles({title, subtitle, date})}
</div>
</div>
{/if} -->
</div>
{#snippet titles({title, subtitle, date}: {title: string, subtitle: string, date: string})}
<h1 class="title">{title}</h1>
{#if subtitle}
<p class="subtitle">[ {subtitle} ]</p>
{/if}
{#if date}
<p class="date">» {date}</p>
{/if}
{/snippet}
<SeparatorLine />
<style>
.container {
width: 100%;
background-color: var(--color-background-highlight);
}
.subcontainer {
max-width: var(--page-width);
/* min-height: 250px;
max-height: 600px; */
display: flex;
flex-direction: row;
margin-left: auto;
margin-right: auto;
}
.banner {
/* position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0; */
max-height: 260px;
}
.img-container {
flex-grow: 1;
width: 50%;
position: relative;
}
.text-container {
margin-left: var(--margin-content-side);
margin-right: var(--margin-content-side);
/* position: absolute;
bottom: 0; */
}
.container img {
height: 100%;
width: 100%;
object-fit: cover;
}
.title {
width: 100%;
box-sizing: border-box;
height: fit-content;
left: 0;
right: 0;
bottom: 0px;
/* font-style: italic; */
}
.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-family: var(--font-mono);
font-weight: 800;
font-size: 1.3rem;
margin-top: 0;
}
@media screen and (max-width: 800px) {
.subcontainer {
height: fit-content;
flex-direction: column;
}
.text-container {
width: initial;
}
.img-container {
width: 100%;
}
.img-container img {
height: 200px;
}
.subtitle {
font-size: 1.0rem;
line-height: 1.1rem;
}
}
</style>

View File

@@ -1,16 +1,37 @@
<div class="main-content">
<slot />
</div>
<script lang="ts">
let {
useContentWidth,
}: {
useContentWidth?: boolean;
} = $props();
</script>
{#if useContentWidth}
<div class="main-content content-width">
<slot />
</div>
{:else}
<div class="main-content page-width">
<slot />
</div>
{/if}
<style>
.main-content {
width: 100%;
max-width: var(--page-width);
box-sizing: border-box;
margin: 0 auto;
padding: 0 24px;
}
.content-width {
max-width: var(--content-width);
}
.page-width {
max-width: var(--page-width);
}
@media screen and (max-width: 800px) {
.main-content {
padding: 0 8px;

View File

@@ -2,7 +2,7 @@
let {
noMargin,
}: {
noMargin: boolean;
noMargin?: boolean;
} = $props();
</script>