BIN
static/slimequest/1.jpg
Normal file
After Width: | Height: | Size: 184 KiB |
BIN
static/slimequest/1a.jpg
Normal file
After Width: | Height: | Size: 161 KiB |
BIN
static/slimequest/2.jpg
Normal file
After Width: | Height: | Size: 176 KiB |
BIN
static/slimequest/3.jpg
Normal file
After Width: | Height: | Size: 132 KiB |
BIN
static/slimequest/4.jpg
Normal file
After Width: | Height: | Size: 135 KiB |
BIN
static/slimequest/5.jpg
Normal file
After Width: | Height: | Size: 111 KiB |
BIN
static/slimequest/6.jpg
Normal file
After Width: | Height: | Size: 82 KiB |
31
static/slimequest/index.html
Normal 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">> <a href="/slimequest/page-1/">==></a></span>
|
||||
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="/slimequest/">Start Over</a></li>
|
||||
|
||||
|
||||
<li><a href="/">Home</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
33
static/slimequest/page-1/index.html
Normal file
|
@ -0,0 +1,33 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>==></title>
|
||||
<link rel="stylesheet" href="/slimequest/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<main>
|
||||
<h1>==></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">> <a href="/slimequest/page-2/">==></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>
|
33
static/slimequest/page-2/index.html
Normal file
|
@ -0,0 +1,33 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>==></title>
|
||||
<link rel="stylesheet" href="/slimequest/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<main>
|
||||
<h1>==></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 you’re barely a fraction of your old self.</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<span class="next">> _</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>
|
53
static/slimequest/style.css
Normal 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;
|
||||
}
|