new site
@ -1,4 +0,0 @@
|
|||||||
# Reisen Church
|
|
||||||
|
|
||||||

|
|
||||||
|
|
BIN
assets/banner-full-painting.jpg
Normal file
After Width: | Height: | Size: 1.1 MiB |
BIN
assets/banner-left.jpg
Normal file
After Width: | Height: | Size: 3.4 MiB |
BIN
assets/banner-left.jpg~
Normal file
After Width: | Height: | Size: 1.0 MiB |
BIN
assets/banner-right.jpg
Normal file
After Width: | Height: | Size: 2.9 MiB |
BIN
assets/banner-right.jpg-autosave.kra
Normal file
BIN
assets/banner-right.jpg~
Normal file
After Width: | Height: | Size: 841 KiB |
BIN
assets/banner.jpg
Normal file
After Width: | Height: | Size: 215 KiB |
BIN
background.jpg
Before Width: | Height: | Size: 862 KiB |
100
css/style.css
Normal file
@ -0,0 +1,100 @@
|
|||||||
|
/* Main layout container */
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
display: flex;
|
||||||
|
min-height: 100vh;
|
||||||
|
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
|
||||||
|
letter-spacing: 0.03em;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Optional: Add to headings for contrast */
|
||||||
|
h1, h2, h3, h4, h5, h6 {
|
||||||
|
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
|
||||||
|
font-weight: 400; /* Classic book style often uses lighter weights */
|
||||||
|
letter-spacing: 0.03em;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
padding-left: 20px;
|
||||||
|
padding-right: 20px;
|
||||||
|
text-align: justify;
|
||||||
|
hyphens: auto;
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Side banners */
|
||||||
|
.banner-left, .banner-right {
|
||||||
|
flex: 1; /* This makes them grow to fill available space */
|
||||||
|
min-width: 100px; /* Minimum width */
|
||||||
|
background-size: cover;
|
||||||
|
background-position: center;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
width: 200px; /* Fixed width */
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner-left {
|
||||||
|
background-image: url('../assets/banner-left.jpg');
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner-right {
|
||||||
|
background-image: url('../assets/banner-right.jpg');
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Centered content box */
|
||||||
|
.content-wrapper {
|
||||||
|
width: 1100px;
|
||||||
|
margin: 0;
|
||||||
|
padding: 20px;
|
||||||
|
background: #ffffff;
|
||||||
|
box-shadow: 0 0 30px rgba(0,0,0,0.9);
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
.gray {
|
||||||
|
color: gray;
|
||||||
|
position: fixed;
|
||||||
|
bottom: 0;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.icon {
|
||||||
|
width: 50px;
|
||||||
|
}
|
||||||
|
.column-1 {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.row {
|
||||||
|
gap: 0;
|
||||||
|
margin: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.column-2 {
|
||||||
|
font-size: inherit;
|
||||||
|
background-size: cover;
|
||||||
|
margin: auto;
|
||||||
|
background-color: #181818ea;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.table {
|
||||||
|
display: flex;
|
||||||
|
flex-flow: column nowrap;
|
||||||
|
margin: 0.5rem;
|
||||||
|
line-height: 1.5;
|
||||||
|
flex: 1 1 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.td {
|
||||||
|
justify-content: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.td>.td-url {
|
||||||
|
padding-left: 15%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tr {
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
justify-content: left;
|
||||||
|
gap: 10px;
|
||||||
|
}
|
BIN
favicon.ico
Before Width: | Height: | Size: 452 B |
Before Width: | Height: | Size: 4.0 KiB |
BIN
icons/git.png
Before Width: | Height: | Size: 91 KiB |
BIN
icons/github.png
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 6.2 KiB |
BIN
icons/matrix.png
Before Width: | Height: | Size: 7.6 KiB |
44
index.html
@ -1,7 +1,7 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html lang="en">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
|
<<<<<<< Updated upstream
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<title>HTML by Hand Online</title>
|
<title>HTML by Hand Online</title>
|
||||||
<meta property="og:site_name" content="HTML by Hand Online" />
|
<meta property="og:site_name" content="HTML by Hand Online" />
|
||||||
@ -126,9 +126,15 @@
|
|||||||
color: #ffcccc
|
color: #ffcccc
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
=======
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>My Website</title>
|
||||||
|
<link rel="stylesheet" href="css/style.css">
|
||||||
|
>>>>>>> Stashed changes
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
<<<<<<< Updated upstream
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="column-1">
|
<div class="column-1">
|
||||||
<img src="reisen-transparent.png">
|
<img src="reisen-transparent.png">
|
||||||
@ -140,22 +146,50 @@
|
|||||||
<div class="tr">
|
<div class="tr">
|
||||||
<div class="td"><img src="icons/git.png" class="icon"></div>
|
<div class="td"><img src="icons/git.png" class="icon"></div>
|
||||||
<div class="td-url"><a href="https://code.htmlbyhand.online/NaiJi"">NaiJi</a></div>
|
<div class="td-url"><a href="https://code.htmlbyhand.online/NaiJi"">NaiJi</a></div>
|
||||||
|
=======
|
||||||
|
<!-- Left Banner -->
|
||||||
|
<div class="banner-left"></div>
|
||||||
|
|
||||||
|
<!-- Centered Content -->
|
||||||
|
<div class="content-wrapper">
|
||||||
|
<main>
|
||||||
|
<h1>Welcome to NaiJi's personal page!</h2>
|
||||||
|
<p>Hello friend! People normally know me as NaiJi, it's a random nickname that doesn't mean anything. Here is a bunch of links idk</p>
|
||||||
|
<div class="table">
|
||||||
|
<div class="tr">
|
||||||
|
<div class="td"><img src="icons/git.png" class="icon"></div>
|
||||||
|
<div class="td-url"><a href="https://code.htmlbyhand.online/">NaiJi</a></div>
|
||||||
|
>>>>>>> Stashed changes
|
||||||
</div>
|
</div>
|
||||||
<div class="tr">
|
<div class="tr">
|
||||||
<div class="td"><img src="icons/github.png" class="icon"></div>
|
<div class="td"><img src="icons/github.png" class="icon"></div>
|
||||||
<div class="td-url"><a href="https://github.com/WizardNaiJi"">WizardNaiJi</a></div>
|
<div class="td-url"><a href="https://github.com/WizardNaiJi">WizardNaiJi</a></div>
|
||||||
</div>
|
</div>
|
||||||
<div class=" tr">
|
<div class=" tr">
|
||||||
<div class="td"><img src="icons/matrix.png" class="icon"></div>
|
<div class="td"><img src="icons/matrix.png" class="icon"></div>
|
||||||
<div class="td-url"><a href=" https://matrix.org/"">@naiji:inex.rocks</a></div>
|
<div class="td-url"><a href=" https://matrix.org/">@naiji:inex.rocks</a></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<br>
|
<br>
|
||||||
<br>
|
<br>
|
||||||
|
<<<<<<< Updated upstream
|
||||||
<a href="https://reisen.church/"><img src="stamps/stamp_reisen_church.png"></a><a href="https://udongein.xyz/"><img src="stamps/stamp_udongein_xyz.png"></a><a href="https://weebles.husbandoism.life/"><img src="stamps/beanbutton.gif"></a><a href="https://waifuism.life/"><img src="stamps/stamp_waifuism_life.png"></a><a href="https://pleroma.social/"><img src="stamps/stamp_pleroma_now.png"></a><a href="https://vndb.org/"><img src="stamps/stamp_vndb.gif"></a><a href="https://cyuucat.moe"><img src="stamps/cyuu.gif"></a><a href="https://getimiskon.neocities.org/"><img src="stamps/geti.png"></a><a href="https://fediverse.party/en/fediverse/"><img src="stamps/join-fediverse.gif"></a><a href="https://archlinux.org/"><img src="stamps/archlinux.gif"></a><a href="https://jigsaw.w3.org/css-validator/validator?uri=https%3A%2F%2Freisen.church"><img src="stamps/vcss-blue"></a><a href="https://distrowatch.com/table.php?distribution=arch"><img src="stamps/linux.gif"></a><a href="https://css-tricks.com/snippets/css/a-guide-to-flexbox/"><img src="stamps/css2.png"></a><a href="https://reisen.church"><img src="stamps/cookiefree.gif"></a><a href="http://tengu.space/"><img src="stamps/tenguspace.png"></a><a href="https://pl.ebin.zone/"><img src="stamps/stamp_ebin_zone.png"></a><a href="https://www.silk.ms/"><img src="stamps/silk.gif"></a><a href="https://https://chaotic.ninja/"><img src="stamps/chaoticninja.gif"></a><img src="stamps/miku.gif"><img src="stamps/vocaloid.gif"><img src="stamps/wwwbutton.gif"><img src="stamps/site_best_viewed_with_monitor.gif"><a href="https://geidontei.chaotic.ninja/usr/mima/"><img src="stamps/mima.png"></a><a href="https://www.nicovideo.jp/watch/sm8628149"><img src="stamps/badapple.gif"></a><img src="stamps/reisen.png">
|
<a href="https://reisen.church/"><img src="stamps/stamp_reisen_church.png"></a><a href="https://udongein.xyz/"><img src="stamps/stamp_udongein_xyz.png"></a><a href="https://weebles.husbandoism.life/"><img src="stamps/beanbutton.gif"></a><a href="https://waifuism.life/"><img src="stamps/stamp_waifuism_life.png"></a><a href="https://pleroma.social/"><img src="stamps/stamp_pleroma_now.png"></a><a href="https://vndb.org/"><img src="stamps/stamp_vndb.gif"></a><a href="https://cyuucat.moe"><img src="stamps/cyuu.gif"></a><a href="https://getimiskon.neocities.org/"><img src="stamps/geti.png"></a><a href="https://fediverse.party/en/fediverse/"><img src="stamps/join-fediverse.gif"></a><a href="https://archlinux.org/"><img src="stamps/archlinux.gif"></a><a href="https://jigsaw.w3.org/css-validator/validator?uri=https%3A%2F%2Freisen.church"><img src="stamps/vcss-blue"></a><a href="https://distrowatch.com/table.php?distribution=arch"><img src="stamps/linux.gif"></a><a href="https://css-tricks.com/snippets/css/a-guide-to-flexbox/"><img src="stamps/css2.png"></a><a href="https://reisen.church"><img src="stamps/cookiefree.gif"></a><a href="http://tengu.space/"><img src="stamps/tenguspace.png"></a><a href="https://pl.ebin.zone/"><img src="stamps/stamp_ebin_zone.png"></a><a href="https://www.silk.ms/"><img src="stamps/silk.gif"></a><a href="https://https://chaotic.ninja/"><img src="stamps/chaoticninja.gif"></a><img src="stamps/miku.gif"><img src="stamps/vocaloid.gif"><img src="stamps/wwwbutton.gif"><img src="stamps/site_best_viewed_with_monitor.gif"><a href="https://geidontei.chaotic.ninja/usr/mima/"><img src="stamps/mima.png"></a><a href="https://www.nicovideo.jp/watch/sm8628149"><img src="stamps/badapple.gif"></a><img src="stamps/reisen.png">
|
||||||
<br><a href="https://touhou-project.news/"><img src="stamps/touhouproject.jpg"></a>
|
<br><a href="https://touhou-project.news/"><img src="stamps/touhouproject.jpg"></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
=======
|
||||||
|
<p>You can reach me out by mail at naijiworld [at] protonmail [dot] com</p>
|
||||||
|
|
||||||
|
</main>
|
||||||
|
>>>>>>> Stashed changes
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<p class="gray">The background image is fragments from <a href="https://commons.wikimedia.org/wiki/File:Alexander_Koester_-_Ducks_on_a_Pond.jpg">Ducks on a Pond</a> by Alexander Koester</p>
|
||||||
|
</footer>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Right Banner -->
|
||||||
|
<div class="banner-right"></div>
|
||||||
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
BIN
praying.png
Before Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 2.2 MiB |
Before Width: | Height: | Size: 783 KiB |
Before Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 54 KiB |
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 7.6 KiB |
Before Width: | Height: | Size: 581 B |
BIN
stamps/css2.png
Before Width: | Height: | Size: 822 B |
BIN
stamps/cyuu.gif
Before Width: | Height: | Size: 1.7 KiB |
BIN
stamps/geti.png
Before Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 445 B |
BIN
stamps/linux.gif
Before Width: | Height: | Size: 2.4 KiB |
BIN
stamps/miku.gif
Before Width: | Height: | Size: 6.1 KiB |
BIN
stamps/mima.png
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 1.6 KiB |
BIN
stamps/silk.gif
Before Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 308 B |
Before Width: | Height: | Size: 385 B |
Before Width: | Height: | Size: 7.0 KiB |
Before Width: | Height: | Size: 6.5 KiB |
Before Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 11 KiB |
BIN
stamps/vcss-blue
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 1.5 KiB |
BIN
thumbnail.jpg
Before Width: | Height: | Size: 978 KiB |