blog-minerva-juppiter

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 954cfe885ff4fb6910d1f2a10a5e75c0d4baab96
parent a41e961ff336adce098127740bd8d6f20bb9be4b
Author: minerva-jupiter <ryouturn@gmail.com>
Date:   Sun, 30 Mar 2025 19:50:55 +0900

色を変更しレイアウトを整えた。

Diffstat:
Msrc/routes/+layout.svelte | 12+++++++++---
Msrc/routes/+page.svelte | 16++++++++++------
Msrc/routes/about/+page.svelte | 4++++
Dstatic/favicon.png | 0
4 files changed, 23 insertions(+), 9 deletions(-)

diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte @@ -19,21 +19,27 @@ <style> :global(body) { background-color: black; - color: whitesmoke; + color: #d9d9d9; padding-left: 5rem; padding-right: 5rem; + font-family: "Tw Cen MT","Century Gothic","Noto Sans JP"; } header { - background-color: #c2c2c2; + background-color: #d9d9d9; color: #0f0a05; - padding: 2rem; + padding-top: 1rem; + padding-left: 2rem; + padding-right: 2rem; + padding-bottom: 2rem; } nav a { text-decoration: none; color: black; + font-size: large; } footer { background-color: #0f0a05; + text-align: center; color: gray; padding: 1rem; } diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte @@ -1,4 +1,4 @@ -<h3>Articles</h3> +<h1>Articles</h1> <ul> {#each articles as article,index} <a href="./article/{index}"> @@ -12,15 +12,19 @@ </script> <style> - h3 { - color: whitesmoke; + h1 { padding-left: 3rem; } ul { padding-left: 3rem; + font-size: large; } a { text-decoration: none; - color: white; + color: #d9d9d9; } -</style>- \ No newline at end of file +</style> + +<svelte:head> + <title>Blog Minerva_Juppiter</title> +</svelte:head>+ \ No newline at end of file diff --git a/src/routes/about/+page.svelte b/src/routes/about/+page.svelte @@ -2,3 +2,6 @@ <br/> <h3>About this page</h3> <p>This page is deployed by cloudflare pages & github</p> +<br/> +<h3>Repository</h3> +<p><a href="https://github.com/minerva-jupiter/blog-minerva-juppiter">https://github.com/minerva-jupiter/blog-minerva-juppiter</a></p>+ \ No newline at end of file diff --git a/static/favicon.png b/static/favicon.png Binary files differ.