okay, that's enough carnage for one day
This commit is contained in:
parent
53c25d6a01
commit
077ec09bb6
42 changed files with 75 additions and 310 deletions
128
index.html
128
index.html
|
@ -8,7 +8,7 @@
|
|||
<meta name="description" content="waiting for eternity">
|
||||
<style>
|
||||
body {
|
||||
background-color: #003366;
|
||||
background-color: #000000;
|
||||
margin-top: 20px;
|
||||
letter-spacing: 4px;
|
||||
color: #00ccff;
|
||||
|
@ -16,6 +16,14 @@
|
|||
margin: auto;
|
||||
margin-top: 20px;
|
||||
}
|
||||
@media only screen and (min-width: 900px) {
|
||||
body {
|
||||
background-image: url(./img/pillar.gif), url(./img/pillar.gif);
|
||||
background-position: right bottom, left bottom;
|
||||
background-repeat: no-repeat;
|
||||
background-attachment: fixed;
|
||||
}
|
||||
}
|
||||
img {
|
||||
height: 30%;
|
||||
width: auto;
|
||||
|
@ -23,6 +31,16 @@
|
|||
p, h1 {
|
||||
text-align: center;
|
||||
}
|
||||
h2 {
|
||||
display: inline-block;
|
||||
}
|
||||
.more-spacing {
|
||||
max-width: 600px;
|
||||
margin: auto;
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
text-align: justify;
|
||||
}
|
||||
.angle14 {
|
||||
transform: rotate(14deg)
|
||||
}
|
||||
|
@ -35,6 +53,9 @@
|
|||
z-index: 4;
|
||||
position: relative;
|
||||
}
|
||||
#sigil {
|
||||
filter: invert(1);
|
||||
}
|
||||
/* the following shamelessly stolen from https://xenobyte.xyz */
|
||||
/* lmao */
|
||||
html::before {
|
||||
|
@ -87,93 +108,30 @@
|
|||
}
|
||||
}
|
||||
</style>
|
||||
<script>
|
||||
/*
|
||||
@licstart The following is the entire license notice for the
|
||||
JavaScript code in this page.
|
||||
|
||||
Copyright (C) 2018-2024 Vane Vander
|
||||
|
||||
The JavaScript code in this page is free software: you can
|
||||
redistribute it and/or modify it under the terms of the GNU
|
||||
General Public License (GNU GPL) as published by the Free Software
|
||||
Foundation, either version 3 of the License, or (at your option)
|
||||
any later version. The code is distributed WITHOUT ANY WARRANTY;
|
||||
without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
FOR A PARTICULAR PURPOSE. See the GNU GPL for more details.
|
||||
|
||||
As additional permission under GNU GPL version 3 section 7, you
|
||||
may distribute non-source (e.g., minimized or compacted) forms of
|
||||
that code without the copy of the GNU GPL normally required by
|
||||
section 4, provided you include this license notice and a URL
|
||||
through which recipients can access the Corresponding Source.
|
||||
|
||||
|
||||
@licend The above is the entire license notice
|
||||
for the JavaScript code in this page.
|
||||
*/
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<script src="./checktor.js"></script>
|
||||
<p id="frame"><img src="./img/gloria/jett_frame4.png" alt="mirror"></p>
|
||||
<script>
|
||||
// enumeration always starts at zero
|
||||
var number = (Math.floor(Math.random() * 10));
|
||||
// start of variables
|
||||
var frame1 = "<img src=./img/gloria/jett_frame1.png>";
|
||||
var frame2 = "<img src=./img/gloria/jett_frame2.png>";
|
||||
var frame3 = "<img src=./img/gloria/jett_frame3.png>";
|
||||
var frame4 = "<img src=./img/gloria/jett_frame4.png>";
|
||||
var frame5 = "<img src=./img/gloria/jett_frame5.png>";
|
||||
var frame6 = "<img src=./img/gloria/jett_frame6.png>";
|
||||
var frame7 = "<img src=./img/gloria/jett_frame7.png>";
|
||||
var frame8 = "<img src=./img/gloria/jett_frame8.png>";
|
||||
// end of variables
|
||||
if (number == 1) {
|
||||
document.getElementById("frame").innerHTML = frame1;
|
||||
}
|
||||
if (number == 2) {
|
||||
document.getElementById("frame").innerHTML = frame2;
|
||||
}
|
||||
if (number == 3) {
|
||||
document.getElementById("frame").innerHTML = frame3;
|
||||
}
|
||||
if (number == 4) {
|
||||
document.getElementById("frame").innerHTML = frame4;
|
||||
}
|
||||
if (number == 5) {
|
||||
document.getElementById("frame").innerHTML = frame5;
|
||||
}
|
||||
if (number == 6) {
|
||||
document.getElementById("frame").innerHTML = frame6;
|
||||
}
|
||||
if (number == 7) {
|
||||
document.getElementById("frame").innerHTML = frame7;
|
||||
}
|
||||
if (number == 8) {
|
||||
document.getElementById("frame").innerHTML = frame8;
|
||||
}
|
||||
</script>
|
||||
<p><img id="sigil" src="./jett_sigil.png" /></p>
|
||||
<h1>Dead End Shrine Online</h1>
|
||||
<p>
|
||||
<a href="./p1.html">[1]</a>
|
||||
<a href="./p2.html">[2]</a>
|
||||
<a href="./p3.html">[3]</a>
|
||||
<a href="./p4.html">[4]</a>
|
||||
<a href="./p5.html">[5]</a>
|
||||
<a href="./p6.html">[6]</a>
|
||||
<a href="./p7.html">[7]</a>
|
||||
<a href="./p8.html">[8]</a>
|
||||
<a href="./p9.html">[9]</a>
|
||||
<a href="./p10.html">[10]</a>
|
||||
<a href="./p11.html">[11]</a>
|
||||
<a href="./p12.html">[12]</a>
|
||||
<a href="./p13.html">[13]</a>
|
||||
<a href="./p14.html">[14]</a>
|
||||
<a href="./p15.html">[15]</a>
|
||||
<a href="./p16.html">[16]</a>
|
||||
</p>
|
||||
<div class="more-spacing">
|
||||
<h2>Letters to Jett</h2>
|
||||
<a href="./writing/letters_to_jett/p1.html">[1]</a>
|
||||
<a href="./writing/letters_to_jett/p2.html">[2]</a>
|
||||
<a href="./writing/letters_to_jett/p3.html">[3]</a>
|
||||
<a href="./writing/letters_to_jett/p4.html">[4]</a>
|
||||
<a href="./writing/letters_to_jett/p5.html">[5]</a>
|
||||
<a href="./writing/letters_to_jett/p6.html">[6]</a>
|
||||
<a href="./writing/letters_to_jett/p7.html">[7]</a>
|
||||
<a href="./writing/letters_to_jett/p8.html">[8]</a>
|
||||
<a href="./writing/letters_to_jett/p9.html">[9]</a>
|
||||
<a href="./writing/letters_to_jett/p10.html">[10]</a>
|
||||
<a href="./writing/letters_to_jett/p11.html">[11]</a>
|
||||
<a href="./writing/letters_to_jett/p12.html">[12]</a>
|
||||
<a href="./writing/letters_to_jett/p13.html">[13]</a>
|
||||
<a href="./writing/letters_to_jett/p14.html">[14]</a>
|
||||
<a href="./writing/letters_to_jett/p15.html">[15]</a>
|
||||
<a href="./writing/letters_to_jett/p16.html">[16]</a>
|
||||
</div>
|
||||
<hr>
|
||||
<p>
|
||||
<a href="./mods/index.html">[Mods]</a>
|
||||
|
@ -190,7 +148,7 @@
|
|||
<a href="http://127.0.0.1:8888/USK@3igGCjaVr8BNYRhuRka8BA50089XeH-uOq1~m8FZ5KQ,pzggo6unfI9aZTSYJvimOyFFuQAQwrPYxpnbHN8k~L4,AQACAAE/deadendshrine/-1/">[Hyphanet]</a>
|
||||
<a href="http://blapi36sowfyuwzp4ag24xb3d4zdrzgtafez3g3lkp2rj4ho7lxhceid.onion">[Tor]</a>
|
||||
<a href="http://3jhu7n37vhzf3mpusw77ilq7cwabpnqnd35c37ojn4v7vjuneeia.b32.i2p">[I2P]</a>
|
||||
<!-- <a href="http://yggdrasil.deadendshrine.online">[Yggdrasil]</a>-->
|
||||
<!-- <a href="http://yggdrasil.deadendshrine.online">[Yggdrasil]</a> -->
|
||||
<a href="ipns://deadendshrine.online/">[IPFS]</a>
|
||||
<a href="gemini://gemini.deadendshrine.online">[Gemini]</a>
|
||||
<a href="gemini://blapi36sowfyuwzp4ag24xb3d4zdrzgtafez3g3lkp2rj4ho7lxhceid.onion">[Tor Gemini]</a>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue