Fix newlines (again; missed some)

This commit is contained in:
2015-06-08 23:55:17 -04:00
parent d6218e9db9
commit f149a85575
7 changed files with 4309 additions and 3885 deletions

View File

@@ -1,42 +1,42 @@
/*
The navbar, to be included in all files.
*/
document.write('\
<ol>\
<li><a href="About.html">About</a></li>\
<li><a href="Building.html">Tutorial</a></li>\
<li><a href="Editing.html">Making and Editing</a></li>\
<li><a href="Outdoors.html">Outdoors</a></li>\
<li><a href="Towns.html">Towns</a></li>\
<li><a href="Terrain.html">Terrain Types</a></li>\
<li><a href="Monsters.html">Monster Types</a></li>\
<li><a href="Items.html">Items</a></li>\
<li><a href="Advanced.html">Advanced</a></li>\
<li><a href="Specials.html">Special Encounters</a></li>\
<li><a href="Dialogue.html">Dialogue</a></li>\
<li><a href="Graphics.html">Customizing Graphics</a></li>\
<li><a href="Testing.html">Testing and Distributing</a></li>\
</ol>\
<h2>Appendices</h2>\
<ol style="list-style-type:upper-alpha">\
<li><a href="appendix/Specials.html">Special Encounter Node Types</a></li>\
<li><a href="appendix/Items.html">Item Ability Types</a></li>\
<li><a href="appendix/Monsters.html">Monster Ability Types</a></li>\
<li><a href="appendix/Terrain.html">Starting Terrain Types</a></li>\
<li><a href="appendix/Sounds.html">Blades Sound Effects</a></li>\
<li><a href="appendix/Messages.html">Text Messages</a></li>\
<li><a href="appendix/Magic.html">Spell and Alchemy Lists</a></li>\
<li><a href="appendix/Examples.html">Special Encounter Examples</a></li>\
</ol>\
');
if(document.location.pathname.contains("appendix")) {
var links = document.querySelectorAll(".navbar a");
console.log(links);
for(var i = 0; i < links.length; i++) {
links[i].href = links[i].href.replace("appendix/","");
}
}
/*
The navbar, to be included in all files.
*/
document.write('\
<ol>\
<li><a href="About.html">About</a></li>\
<li><a href="Building.html">Tutorial</a></li>\
<li><a href="Editing.html">Making and Editing</a></li>\
<li><a href="Outdoors.html">Outdoors</a></li>\
<li><a href="Towns.html">Towns</a></li>\
<li><a href="Terrain.html">Terrain Types</a></li>\
<li><a href="Monsters.html">Monster Types</a></li>\
<li><a href="Items.html">Items</a></li>\
<li><a href="Advanced.html">Advanced</a></li>\
<li><a href="Specials.html">Special Encounters</a></li>\
<li><a href="Dialogue.html">Dialogue</a></li>\
<li><a href="Graphics.html">Customizing Graphics</a></li>\
<li><a href="Testing.html">Testing and Distributing</a></li>\
</ol>\
<h2>Appendices</h2>\
<ol style="list-style-type:upper-alpha">\
<li><a href="appendix/Specials.html">Special Encounter Node Types</a></li>\
<li><a href="appendix/Items.html">Item Ability Types</a></li>\
<li><a href="appendix/Monsters.html">Monster Ability Types</a></li>\
<li><a href="appendix/Terrain.html">Starting Terrain Types</a></li>\
<li><a href="appendix/Sounds.html">Blades Sound Effects</a></li>\
<li><a href="appendix/Messages.html">Text Messages</a></li>\
<li><a href="appendix/Magic.html">Spell and Alchemy Lists</a></li>\
<li><a href="appendix/Examples.html">Special Encounter Examples</a></li>\
</ol>\
');
if(document.location.pathname.contains("appendix")) {
var links = document.querySelectorAll(".navbar a");
console.log(links);
for(var i = 0; i < links.length; i++) {
links[i].href = links[i].href.replace("appendix/","");
}
}

View File

@@ -1,60 +1,60 @@
body {
background-image: url("../img/background.gif");
}
p {
text-indent: 20px;
}
span.s1 {
text-decoration: underline
}
img {
border: 0px;
}
span.key { /* Just to make things easier to read */
background-color: #F1F2EC;
width: 32px;
border-style: outset;
border-width: 1px;
margin:0;
padding:0 2px;
clear:none;
font-family:monospace;
border-radius: 3px;
}
.figure {
float:right;
border:1px dashed #444444;
}
.navbar {
position: relative;
left: 1em;
width: 9em;
top: 1em
}
.content {
position:absolute;
left: 12em;
right: 2em;
top: 1em
}
dt {
font-weight: bold;
margin-top: 0px;
}
dd dl {
margin-top: 0px;
margin-bottom: 0px;
}
dd dt {
font-weight: normal;
font-style: italic;
}
body {
background-image: url("../img/background.gif");
}
p {
text-indent: 20px;
}
span.s1 {
text-decoration: underline
}
img {
border: 0px;
}
span.key { /* Just to make things easier to read */
background-color: #F1F2EC;
width: 32px;
border-style: outset;
border-width: 1px;
margin:0;
padding:0 2px;
clear:none;
font-family:monospace;
border-radius: 3px;
}
.figure {
float:right;
border:1px dashed #444444;
}
.navbar {
position: relative;
left: 1em;
width: 9em;
top: 1em
}
.content {
position:absolute;
left: 12em;
right: 2em;
top: 1em
}
dt {
font-weight: bold;
margin-top: 0px;
}
dd dl {
margin-top: 0px;
margin-bottom: 0px;
}
dd dt {
font-weight: normal;
font-style: italic;
}