adjusted bottom margin of footer; images on projects page now shrink on mobile
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<script>
|
||||
import Header from "$lib/header.svelte";
|
||||
import Footer from "$lib/footer.svelte";
|
||||
import Header from "$lib/viewport/header.svelte";
|
||||
import Footer from "$lib/viewport/footer.svelte";
|
||||
|
||||
let { children } = $props();
|
||||
</script>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<script lang="ts">
|
||||
import { onMount } from "svelte";
|
||||
import Content from "$lib/content.svelte";
|
||||
import Content from "$lib/viewport/content.svelte";
|
||||
import GamedevWebring from "$lib/webrings/gamedev.svelte";
|
||||
import Gallery, { type GalleryEntry } from "$lib/lists/gallery.svelte";
|
||||
import LinkList from "$lib/link-list.svelte";
|
||||
import LinkList from "$lib/lists/link-list.svelte";
|
||||
import { quotes, type Quote } from "./quotes";
|
||||
|
||||
import { posts } from "./projects/projectn5/devlog/posts";
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
<script lang="ts">
|
||||
import Banner2 from "$lib/banner2.svelte";
|
||||
import Content from "$lib/content.svelte";
|
||||
import Content from "$lib/viewport/content.svelte";
|
||||
import TableOfContents from "$lib/table-of-contents.svelte";
|
||||
import LinkList, { type LinkEntry } from "$lib/link-list.svelte";
|
||||
import LinkList, { type LinkEntry } from "$lib/lists/link-list.svelte";
|
||||
|
||||
let favouriteAlbums: LinkEntry[] = [
|
||||
{
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<script>
|
||||
import Banner2 from "$lib/banner2.svelte";
|
||||
import Content from "$lib/content.svelte";
|
||||
import Content from "$lib/viewport/content.svelte";
|
||||
import TableOfContents from "$lib/table-of-contents.svelte";
|
||||
|
||||
export let data;
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<script lang="ts">
|
||||
import Banner2 from "$lib/banner2.svelte";
|
||||
import Content from "$lib/content.svelte";
|
||||
import List, { type ListEntry } from "$lib/link-list.svelte";
|
||||
import Content from "$lib/viewport/content.svelte";
|
||||
import List, { type LinkEntry } from "$lib/lists/link-list.svelte";
|
||||
|
||||
let feeds: ListEntry[] = [
|
||||
let feeds: LinkEntry[] = [
|
||||
{
|
||||
text: "Project N5 devlog",
|
||||
link: "/projects/projectn5/devlog/feed.xml",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<script lang="ts">
|
||||
import Banner2 from "$lib/banner2.svelte";
|
||||
import Content from "$lib/content.svelte";
|
||||
import Content from "$lib/viewport/content.svelte";
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
|
||||
@@ -1,10 +1,9 @@
|
||||
<script lang="ts">
|
||||
import Banner2 from "$lib/banner2.svelte";
|
||||
import TableOfContents from "$lib/table-of-contents.svelte";
|
||||
import type { Project } from './projects';
|
||||
import { projects } from './projects';
|
||||
import LinkList from "$lib/link-list.svelte";
|
||||
import Content from "$lib/content.svelte";
|
||||
import { type Project, projects } from './projects';
|
||||
import LinkList from "$lib/lists/link-list.svelte";
|
||||
import Content from "$lib/viewport/content.svelte";
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
@@ -86,15 +85,14 @@
|
||||
.project-banner-container {
|
||||
position: relative;
|
||||
width: fit-content;
|
||||
height: 300px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.project-banner {
|
||||
margin: 0; /* reset left/right margins */
|
||||
width: 100%;
|
||||
max-height: 300px;
|
||||
}
|
||||
|
||||
.project-icon {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<script lang="ts">
|
||||
import Banner2 from "$lib/banner2.svelte";
|
||||
import Content from "$lib/content.svelte";
|
||||
import Content from "$lib/viewport/content.svelte";
|
||||
import TableOfContents from "$lib/table-of-contents.svelte";
|
||||
</script>
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<script lang="ts">
|
||||
import Banner2 from "$lib/banner2.svelte";
|
||||
import Content from "$lib/content.svelte";
|
||||
import Content from "$lib/viewport/content.svelte";
|
||||
// import type { DevlogPost } from "./devlog-posts";
|
||||
import { posts, type DevlogPost } from "./posts";
|
||||
import Gallery, { type GalleryEntry } from "$lib/lists/gallery.svelte";
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<script>
|
||||
import Banner2 from "$lib/banner2.svelte";
|
||||
import Content from "$lib/content.svelte";
|
||||
import Content from "$lib/viewport/content.svelte";
|
||||
import TableOfContents from "$lib/table-of-contents.svelte";
|
||||
|
||||
export let data;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<script lang="ts">
|
||||
import Banner2 from "$lib/banner2.svelte";
|
||||
import Content from "$lib/content.svelte";
|
||||
import Content from "$lib/viewport/content.svelte";
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
|
||||
16
src/routes/what-is-this/+page.svelte
Normal file
16
src/routes/what-is-this/+page.svelte
Normal file
@@ -0,0 +1,16 @@
|
||||
<script lang="ts">
|
||||
import Content from "$lib/viewport/content.svelte";
|
||||
import Banner2 from "$lib/banner2.svelte";
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>what is this space? | denizk0461</title>
|
||||
</svelte:head>
|
||||
|
||||
<Content>
|
||||
<Banner2
|
||||
title="what is this space?" />
|
||||
|
||||
<p>Inspired by <a href="https://blog.avas.space/what-is-this/">this</a></p>
|
||||
|
||||
</Content>
|
||||
Reference in New Issue
Block a user