style/layout: get rid of button link hack
parent
b4f4316fad
commit
e9dc885ea6
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html><head><title> Wake Up! </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><a href="index.html"><button class="back"><</button></a>
|
<!DOCTYPE html><html><head><title> Wake Up! </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><div class="back"><a href="index.html"><</a></div>
|
||||||
|
|
||||||
<h1> Wake Up! </h1>
|
<h1> Wake Up! </h1>
|
||||||
<p>
|
<p>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html><head><title> Unlikely Encounter </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><a href="index.html"><button class="back"><</button></a>
|
<!DOCTYPE html><html><head><title> Unlikely Encounter </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><div class="back"><a href="index.html"><</a></div>
|
||||||
|
|
||||||
<h1> Unlikely Encounter </h1>
|
<h1> Unlikely Encounter </h1>
|
||||||
<p class="light">
|
<p class="light">
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html><head><title> A Simple Errand </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><a href="index.html"><button class="back"><</button></a>
|
<!DOCTYPE html><html><head><title> A Simple Errand </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><div class="back"><a href="index.html"><</a></div>
|
||||||
|
|
||||||
<h1> A Simple Errand</h1>
|
<h1> A Simple Errand</h1>
|
||||||
<p>
|
<p>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html><head><title> Rerturn Null </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><a href="index.html"><button class="back"><</button></a>
|
<!DOCTYPE html><html><head><title> Rerturn Null </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><div class="back"><a href="index.html"><</a></div>
|
||||||
|
|
||||||
<p class="comment">Outline:</p>
|
<p class="comment">Outline:</p>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html><head><title> Eventful Evening </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><a href="index.html"><button class="back"><</button></a>
|
<!DOCTYPE html><html><head><title> Eventful Evening </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><div class="back"><a href="index.html"><</a></div>
|
||||||
|
|
||||||
<h1> Eventful Evening</h1>
|
<h1> Eventful Evening</h1>
|
||||||
<p class="comment">
|
<p class="comment">
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html><head><title> Library At Night </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><a href="index.html"><button class="back"><</button></a>
|
<!DOCTYPE html><html><head><title> Library At Night </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><div class="back"><a href="index.html"><</a></div>
|
||||||
|
|
||||||
<h1> Library At Night</h1>
|
<h1> Library At Night</h1>
|
||||||
<p>
|
<p>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html><head><title> Who died today? </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><a href="index.html"><button class="back"><</button></a>
|
<!DOCTYPE html><html><head><title> Who died today? </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><div class="back"><a href="index.html"><</a></div>
|
||||||
|
|
||||||
<h1> Who Died Today?</h1>
|
<h1> Who Died Today?</h1>
|
||||||
<p class="comment">
|
<p class="comment">
|
||||||
|
|
|
@ -5,9 +5,9 @@
|
||||||
<link rel="stylesheet" type="text/css" href="style.css">
|
<link rel="stylesheet" type="text/css" href="style.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<a href="index.html">
|
<div class="back">
|
||||||
<button class="back"><</button>
|
<a href="index.html"><</a>
|
||||||
</a>
|
</div>
|
||||||
<h1> Layout Test Page </h1>
|
<h1> Layout Test Page </h1>
|
||||||
<p>
|
<p>
|
||||||
This is a test page used for developing the stylesheet used for all
|
This is a test page used for developing the stylesheet used for all
|
||||||
|
|
|
@ -218,13 +218,28 @@ span.chapter::after {
|
||||||
bottom: 0.15em;
|
bottom: 0.15em;
|
||||||
}
|
}
|
||||||
|
|
||||||
button.back {
|
div.back {
|
||||||
font-size: 2.8em;
|
font-size: 2.8em;
|
||||||
width: 1.3em;
|
width: 1.3em;
|
||||||
height: 1.3em;
|
height: 1.3em;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 0.4em;
|
top: 0.4em;
|
||||||
}
|
}
|
||||||
|
div.back a {
|
||||||
|
color: black;
|
||||||
|
text-decoration: none;
|
||||||
|
text-align: center;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
display: block;
|
||||||
|
border-radius: 0.3rem;
|
||||||
|
border: 1.2px solid #97979a;
|
||||||
|
background: #e9e9ed;
|
||||||
|
}
|
||||||
|
div.back a:hover {
|
||||||
|
background: #d0d0d7;
|
||||||
|
border: 1.2px solid #86868f;
|
||||||
|
}
|
||||||
|
|
||||||
.comment {
|
.comment {
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
<!DOCTYPE html><html><head><title> Chapter Name </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><a href="index.html"><button class="back"><</button></a>
|
<!DOCTYPE html><html><head><title> Chapter Name </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><div class="back"><a href="index.html"><</a></div>
|
||||||
<p class="copyright">Copyright © 2023 Jan Danielzick (aka. BodgeMaster) – All rights reserved.</p><script>let spans = ["<span class=\"paper green\">", "<span>"]; let pre_texts = document.getElementsByTagName("pre"); for (let i = 0; i < pre_texts.length; i++) {if (pre_texts[i].className != "paper") continue; let lines = pre_texts[i].innerHTML.split("\n"); let result = ""; for (let j = 0; j < lines.length; j++) {result = result + spans[j%2] + lines[j] + " ".repeat(80-lines[j].length) + "</span>\n";} pre_texts[i].innerHTML = result;}</script></body></html>
|
<p class="copyright">Copyright © 2023 Jan Danielzick (aka. BodgeMaster) – All rights reserved.</p><script>let spans = ["<span class=\"paper green\">", "<span>"]; let pre_texts = document.getElementsByTagName("pre"); for (let i = 0; i < pre_texts.length; i++) {if (pre_texts[i].className != "paper") continue; let lines = pre_texts[i].innerHTML.split("\n"); let result = ""; for (let j = 0; j < lines.length; j++) {result = result + spans[j%2] + lines[j] + " ".repeat(80-lines[j].length) + "</span>\n";} pre_texts[i].innerHTML = result;}</script></body></html>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html><head><title> Erosion </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><a href="index.html"><button class="back"><</button></a>
|
<!DOCTYPE html><html><head><title> Erosion </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><div class="back"><a href="index.html"><</a></div>
|
||||||
|
|
||||||
<h1>Erosion</h1>
|
<h1>Erosion</h1>
|
||||||
<p>
|
<p>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html><head><title> I Like Trains </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><a href="index.html"><button class="back"><</button></a>
|
<!DOCTYPE html><html><head><title> I Like Trains </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><div class="back"><a href="index.html"><</a></div>
|
||||||
|
|
||||||
<h1>I Like Trains</h1>
|
<h1>I Like Trains</h1>
|
||||||
<p>
|
<p>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html><head><title> Unhappy Engine Noises </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><a href="index.html"><button class="back"><</button></a>
|
<!DOCTYPE html><html><head><title> Unhappy Engine Noises </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><div class="back"><a href="index.html"><</a></div>
|
||||||
|
|
||||||
<h1>Unhappy Engine Noises</h1>
|
<h1>Unhappy Engine Noises</h1>
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html><head><title> Escape </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><a href="index.html"><button class="back"><</button></a>
|
<!DOCTYPE html><html><head><title> Escape </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><div class="back"><a href="index.html"><</a></div>
|
||||||
|
|
||||||
<h1> Escape</h1>
|
<h1> Escape</h1>
|
||||||
<p>
|
<p>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html><head><title> First Steps Outside </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><a href="index.html"><button class="back"><</button></a>
|
<!DOCTYPE html><html><head><title> First Steps Outside </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><div class="back"><a href="index.html"><</a></div>
|
||||||
|
|
||||||
<h1> First Steps Outside</h1>
|
<h1> First Steps Outside</h1>
|
||||||
<p>
|
<p>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html><head><title> Welcome Home </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><a href="index.html"><button class="back"><</button></a>
|
<!DOCTYPE html><html><head><title> Welcome Home </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><div class="back"><a href="index.html"><</a></div>
|
||||||
|
|
||||||
<h1>Welcome Home</h1>
|
<h1>Welcome Home</h1>
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html><head><title> Telescope </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><a href="index.html"><button class="back"><</button></a>
|
<!DOCTYPE html><html><head><title> Telescope </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><div class="back"><a href="index.html"><</a></div>
|
||||||
|
|
||||||
<h1>Telescope</h1>
|
<h1>Telescope</h1>
|
||||||
<p>
|
<p>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html><head><title> Lab Rat </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><a href="index.html"><button class="back"><</button></a>
|
<!DOCTYPE html><html><head><title> Lab Rat </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><div class="back"><a href="index.html"><</a></div>
|
||||||
|
|
||||||
<h1> Lab Rat </h1>
|
<h1> Lab Rat </h1>
|
||||||
<p>
|
<p>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html><head><title> Bare Necessities </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><a href="index.html"><button class="back"><</button></a>
|
<!DOCTYPE html><html><head><title> Bare Necessities </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><div class="back"><a href="index.html"><</a></div>
|
||||||
|
|
||||||
<h1> Bare Necessities </h1>
|
<h1> Bare Necessities </h1>
|
||||||
<p>
|
<p>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html><head><title> Banished </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><a href="index.html"><button class="back"><</button></a>
|
<!DOCTYPE html><html><head><title> Banished </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><div class="back"><a href="index.html"><</a></div>
|
||||||
<h1>Banished</h1>
|
<h1>Banished</h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html><head><title> Diesel Creek </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><a href="index.html"><button class="back"><</button></a>
|
<!DOCTYPE html><html><head><title> Diesel Creek </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><div class="back"><a href="index.html"><</a></div>
|
||||||
<h1> Diesel Creek </h1>
|
<h1> Diesel Creek </h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html><head><title> Overdue Maintenence </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><a href="index.html"><button class="back"><</button></a>
|
<!DOCTYPE html><html><head><title> Overdue Maintenence </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><div class="back"><a href="index.html"><</a></div>
|
||||||
<h1> Overdue Maintenance </h1>
|
<h1> Overdue Maintenance </h1>
|
||||||
<p>
|
<p>
|
||||||
Jack parks the truck just before the exit of a tunnel and the four get
|
Jack parks the truck just before the exit of a tunnel and the four get
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html><head><title> The Floor Is Water </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><a href="index.html"><button class="back"><</button></a>
|
<!DOCTYPE html><html><head><title> The Floor Is Water </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><div class="back"><a href="index.html"><</a></div>
|
||||||
<h1>The Floor Is Water</h1>
|
<h1>The Floor Is Water</h1>
|
||||||
|
|
||||||
<p class="comment">missing section</p>
|
<p class="comment">missing section</p>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html><head><title> <Emily First Contact> </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><a href="index.html"><button class="back"><</button></a>
|
<!DOCTYPE html><html><head><title> <Emily First Contact> </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><div class="back"><a href="index.html"><</a></div>
|
||||||
|
|
||||||
<h1> <Emily First Contact></h1>
|
<h1> <Emily First Contact></h1>
|
||||||
<p class="comment">
|
<p class="comment">
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html><head><title> Consulting </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><a href="index.html"><button class="back"><</button></a>
|
<!DOCTYPE html><html><head><title> Consulting </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><div class="back"><a href="index.html"><</a></div>
|
||||||
<h1> Consulting </h1>
|
<h1> Consulting </h1>
|
||||||
<p class="comment">
|
<p class="comment">
|
||||||
The following is a conversation between Jack and someone from the
|
The following is a conversation between Jack and someone from the
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html><head><title> Alone </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><a href="index.html"><button class="back"><</button></a>
|
<!DOCTYPE html><html><head><title> Alone </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><div class="back"><a href="index.html"><</a></div>
|
||||||
|
|
||||||
<h1> Alone</h1>
|
<h1> Alone</h1>
|
||||||
<p class="comment">
|
<p class="comment">
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html><head><title> <Emily incoming call> </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><a href="index.html"><button class="back"><</button></a>
|
<!DOCTYPE html><html><head><title> <Emily incoming call> </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><div class="back"><a href="index.html"><</a></div>
|
||||||
|
|
||||||
<h1> <Emily incoming call> </h1>
|
<h1> <Emily incoming call> </h1>
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html><head><title> <Story End Outline> </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><a href="index.html"><button class="back"><</button></a>
|
<!DOCTYPE html><html><head><title> <Story End Outline> </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><div class="back"><a href="index.html"><</a></div>
|
||||||
<h1><Story End Outline></h1>
|
<h1><Story End Outline></h1>
|
||||||
<p class="comment">
|
<p class="comment">
|
||||||
This is not intended to be a chapter. It's more of an overview for
|
This is not intended to be a chapter. It's more of an overview for
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html><head><title> <Reaching Nova Metropolis> </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><a href="index.html"><button class="back"><</button></a>
|
<!DOCTYPE html><html><head><title> <Reaching Nova Metropolis> </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><div class="back"><a href="index.html"><</a></div>
|
||||||
<h1>
|
<h1>
|
||||||
<Reaching Nova Metropolis>
|
<Reaching Nova Metropolis>
|
||||||
</h1>
|
</h1>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html><head><title> <Nova Metropolis> </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><a href="index.html"><button class="back"><</button></a>
|
<!DOCTYPE html><html><head><title> <Nova Metropolis> </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><div class="back"><a href="index.html"><</a></div>
|
||||||
<h1><Nova Metropolis></h1>
|
<h1><Nova Metropolis></h1>
|
||||||
<p>
|
<p>
|
||||||
Michelle continues driving the bus for a couple hours without further
|
Michelle continues driving the bus for a couple hours without further
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html><head><title> Landing Troubles </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><a href="index.html"><button class="back"><</button></a>
|
<!DOCTYPE html><html><head><title> Landing Troubles </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><div class="back"><a href="index.html"><</a></div>
|
||||||
<h1>Landing Troubles</h1>
|
<h1>Landing Troubles</h1>
|
||||||
<p>
|
<p>
|
||||||
The escape pod <span class="comment">Is there a word that makes this sound
|
The escape pod <span class="comment">Is there a word that makes this sound
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<!DOCTYPE html><html><head><title> <End> </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><a href="index.html"><button class="back"><</button></a>
|
<!DOCTYPE html><html><head><title> <End> </title><link rel="stylesheet" type="text/css" href="html_resources/style.css"></head><body><div class="back"><a href="index.html"><</a></div>
|
||||||
|
|
||||||
<h1> <End></h1>
|
<h1> <End></h1>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue