Add files via upload
This commit is contained in:
parent
b06fd3a53c
commit
5aaf196939
3 changed files with 1151 additions and 1151 deletions
|
@ -175,8 +175,8 @@ function updateCodelist() {
|
|||
|
||||
function updateDescription(s) {
|
||||
document.getElementById("descriptionbox").innerHTML = "<h2>" +
|
||||
atob(s.getAttribute("data-codename")) + "</h2><p style=\"margin:0\"><i>Author(s): " +
|
||||
atob(s.getAttribute("data-codeauthor")) + "</i></p><p style=\"margin:0\"><i>Version: " +
|
||||
atob(s.getAttribute("data-codename")) + "</h2><p style=\"margin-top:0\"><i>Author(s): " +
|
||||
atob(s.getAttribute("data-codeauthor")) + "</i></p><p style=\"margin-top:0\"><i>Version: " +
|
||||
atob(s.getAttribute("data-codeversion")) + " (" +
|
||||
atob(s.getAttribute("data-codedate")) + ")</i></p>" + "<br /><h4>Description:</h4><p>" +
|
||||
atob(s.getAttribute("data-codedesc")) + "</p>";
|
||||
|
@ -216,7 +216,7 @@ function updateChangelog() {
|
|||
document.getElementById("lastupdate").innerHTML = "Last Updated: " + changelogData[0].getElementsByTagName("date")[0].textContent;
|
||||
|
||||
for (var i = 0; i < changelogData.length && i < 3;i++) {
|
||||
recentchanges += "<p style=\"margin:0\"><i>" + changelogData[i].getElementsByTagName("date")[0].textContent + ":</i> ";
|
||||
recentchanges += "<p style=\"margin-top:0\"><i>" + changelogData[i].getElementsByTagName("date")[0].textContent + ":</i>";
|
||||
|
||||
var changes = changelogData[i].getElementsByTagName("change");
|
||||
for (var k = 0; k < changes.length && (i+k-1) < 3; k++) {
|
||||
|
@ -229,7 +229,7 @@ function updateChangelog() {
|
|||
}
|
||||
} catch (err) {}
|
||||
|
||||
document.getElementById("changelog").innerHTML += recentchanges + "<a target=\"_blank\" href=\"changelog.html\"><i>more ...</i></a>";
|
||||
document.getElementById("changelog").innerHTML += recentchanges + "<p style=\"margin-top:0\"><a target=\"_blank\" href=\"changelog.html\"><i>more ...</i></a></p>";
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -268,7 +268,7 @@
|
|||
<div id="right" class="section">
|
||||
<div id="descriptionbox" class="framed">
|
||||
<h1>Super Mario Sunshine Practice Code Generator v2</h1>
|
||||
<p style="margin:0"><i id="lastupdate"></i></p>
|
||||
<p style="margin-top:0"><i id="lastupdate"></i></p>
|
||||
<br />
|
||||
<p>This is a cheatfile generator for Super Mario Sunshine speedrun practice. A guide on how to use the generator and practice codes on your Wii can be found here: <a target="_blank" href="guide.html">Guide</a>. Visit the <a target="_blank" href="guide.html#3">troubleshooting section</a> if you encounter any issues.</p>
|
||||
<br />
|
||||
|
|
|
@ -35,7 +35,7 @@ h3,h4 {
|
|||
}
|
||||
|
||||
p {
|
||||
margin:10px 0px 0px 0px
|
||||
margin:10px 5px 0px 2px
|
||||
}
|
||||
|
||||
img {
|
||||
|
|
Loading…
Reference in a new issue