edited style and added games page

This commit is contained in:
2025-07-14 12:12:30 +02:00
parent d8cd9f9b7f
commit ea4592b4c2
8 changed files with 138 additions and 44 deletions

View File

@@ -13,7 +13,7 @@
<Footer />
<style>
@import url('https://fonts.upset.dev/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Michroma&family=Space+Grotesk:wght@300..700&display=swap');
@import url('https://fonts.upset.dev/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@font-face {
font-family: 'Monument Extended';
@@ -75,7 +75,7 @@
--color-text: #d0d0d0;
--color-text-img: invert(98%) sepia(1%) saturate(4643%) hue-rotate(297deg) brightness(115%) contrast(76%);
--color-text-dark: #1e1e1e;
--color-highlight: #DB7072 !important;
--color-highlight: #51B86B !important;
--color-background: #1b1b1b;
--color-background-highlight: color-mix(in srgb, var(--color-highlight) 10%, transparent);
@@ -91,8 +91,10 @@
--color-link-hovered: #ffdad5;
--font-title: 'Monument Extended';
--font-sans-serif: 'Manrope', 'Lato', sans-serif;
--font-sans-serif: 'Inter', 'Lato', sans-serif;
--font-mono: 'IBM Plex Mono', monospace;
--page-width: 1200px;
}
html {
@@ -106,6 +108,7 @@
font-size: 1.1rem;
color: var(--color-text); /* text colour */
margin: 0;
background-color: var(--color-background);
}
@@ -126,7 +129,7 @@
p, span, li, pre, a {
color: var(--color-text);
line-height: 1.7rem;
font-weight: 500;
font-weight: 400;
}
.styled-list {
padding: 0;

View File

@@ -4,9 +4,14 @@
import Gallery from "$lib/lists/gallery-entry.svelte";
import LinkList from "$lib/link-list.svelte";
import type { DevlogPost } from "$lib/devlog-posts";
import { posts } from "$lib/devlog-posts";
var lastIndex = -1;
let meImg: string = "common/me/a.webp";
$: setPicture();
function getRandom(to: number): number {
var buf = new Uint8Array(1);
crypto.getRandomValues(buf);
@@ -37,27 +42,27 @@
title: "Project N5 devlog",
subtitle: "my active Godot game project about finding yourself in an unfamiliar future",
fullWidth: true,
img: "projects/projectn5/devlog/2025/0316/fishmonger.webp",
img: "projects/projectn5/devlog/2025/0523/birds_eye.webp",
link: "projects/projectn5/devlog",
},
{
title: "Projects",
subtitle: "an overview of what i do and have done",
subtitle: "an overview of what I do and have done",
fullWidth: false,
img: "projects/project-mix.webp",
link: "projects",
},
{
title: "Blog",
subtitle: "more to come <i>soon</i>",
title: "Games",
subtitle: "some small games I've made that are available online",
fullWidth: false,
img: "common/hypertext.webp",
link: "",
link: "games",
},
]}/>
</div>
<div class="subcontainer">
<h3>about ↬<img id="me-img" class="me-img" title="hi there" src={meImg} onclick={setPicture}>↫ me </h3>
<h3>about ↬<img id="me-img" class="me-img" title="hi there" src={meImg} alt="A mini picture of me">↫ me </h3>
<p>Hi! I'm Deniz. I'm a programmer, sometimes a music producer, and rarely a hard-working student in Northern Germany. Welcome to my webpage!</p>
@@ -65,6 +70,8 @@
<h3>where to find me</h3>
<p>{posts[0].title}</p>
<LinkList entries={[
{
icon: "icons/bluesky.svg",

View File

@@ -0,0 +1,34 @@
<script lang="ts">
import BannerTitleAlt from "$lib/banner-title-alt.svelte";
import Content from "$lib/content.svelte";
import LinkList from "$lib/link-list.svelte";
</script>
<svelte:head>
<title>Games | denizk0461</title>
</svelte:head>
<BannerTitleAlt
title="Games"
banner="/projects/banner.webp"
subtitle="Just some small game projects"
/>
<Content>
<p>Here you'll find all the game projects I've put online!</p>
<p>Do note: the things on here are mostly quick projects, largely unfinished, and possibly not fun.</p>
<LinkList entries={
[
{
text: "swordsnstuff",
link: "swordsnstuff",
},
{
text: "magician - warning no server",
link: "magician",
}
]
}></LinkList>
</Content>