slime quest demo
All checks were successful
/ build (push) Successful in 37s

This commit is contained in:
Nycki 2025-03-15 16:00:03 -07:00
parent 657b6378f6
commit 256feb9c45
11 changed files with 150 additions and 0 deletions

BIN
static/slimequest/1.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 184 KiB

BIN
static/slimequest/1a.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 161 KiB

BIN
static/slimequest/2.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 176 KiB

BIN
static/slimequest/3.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 132 KiB

BIN
static/slimequest/4.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 135 KiB

BIN
static/slimequest/5.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 111 KiB

BIN
static/slimequest/6.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

View file

@ -0,0 +1,31 @@
<!doctype html>
<html lang="en">
<head>
<title>Slime Quest</title>
<link rel="stylesheet" href="/slimequest/style.css">
</head>
<body>
<main>
<h1>Slime Quest</h1>
<p><em></em><p>
<div class="post">
<img src=/slimequest/1a.jpg alt="undefined" title="undefined">
<p>2.0</p>
<p>updates weekly</p>
</div>
<span class="next">&gt; <a href="/slimequest/page-1/">==&gt;</a></span>
<nav>
<ul>
<li><a href="/slimequest/">Start Over</a></li>
<li><a href="/">Home</a></li>
</ul>
</nav>
</main>
</body>
</html>

View file

@ -0,0 +1,33 @@
<!doctype html>
<html lang="en">
<head>
<title>==&gt;</title>
<link rel="stylesheet" href="/slimequest/style.css">
</head>
<body>
<main>
<h1>==&gt;</h1>
<p><em></em><p>
<div class="post"><img src=/slimequest/1.jpg alt="undefined" title="undefined"></div>
<div class="post"><img src=/slimequest/2.jpg alt="slime dragon with sword piercing its heart" title="slime dragon with sword piercing its heart"></div>
<div class="post"><img src=/slimequest/3.jpg alt="undefined" title="undefined"></div>
<div class="post"><img src=/slimequest/4.jpg alt="undefined" title="undefined"></div>
<div class="post"><img src=/slimequest/5.jpg alt="undefined" title="undefined"></div>
<span class="next">&gt; <a href="/slimequest/page-2/">==&gt;</a></span>
<nav>
<ul>
<li><a href="/slimequest/">Start Over</a></li>
<li><a href="/">Go Back</a></li>
<li><a href="/">Home</a></li>
</ul>
</nav>
</main>
</body>
</html>

View file

@ -0,0 +1,33 @@
<!doctype html>
<html lang="en">
<head>
<title>==&gt;</title>
<link rel="stylesheet" href="/slimequest/style.css">
</head>
<body>
<main>
<h1>==&gt;</h1>
<p><em></em><p>
<div class="post">
<img src=/slimequest/6.jpg alt="undefined" title="undefined">
<p>You awaken alone in a field. Beneath you the ground is scorched. The grass around you is tall and wild. The wind is soft and warm.
You were once a Grand Slime, the queen bee of a hive of slimes. Now youre barely a fraction of your old self.</p>
</div>
<span class="next">&gt; _</span>
<nav>
<ul>
<li><a href="/slimequest/">Start Over</a></li>
<li><a href="/page-1/">Go Back</a></li>
<li><a href="/">Home</a></li>
</ul>
</nav>
</main>
</body>
</html>

View file

@ -0,0 +1,53 @@
/* questden colors */
body {
background: #FFFFEE;
}
main {
max-width: 40rem;
margin: 0 auto;
}
.post {
max-width: 40rem;
background: #F0E0D6;
text-align: left;
margin: 0 auto;
padding: 1rem;
}
.post img {
display: block;
margin: 0 auto;
}
/* nav links are a bulleted list without the bullets */
nav ul {
list-style: none;
padding-left: 0;
}
nav li {
display: inline;
}
nav li + li::before {
content: ' | ';
}
/* ms paint adventures */
h1, h2, .next {
font-family: consolas, monospace, sans-serif;
font-weight: bold;
}
h1 {
text-align: center;
}
h2 {
color: #CC1105;
}
.next {
font-size: xx-large;
}