fix style
This commit is contained in:
parent
cd72f945bb
commit
7ae878da28
3 changed files with 39 additions and 11 deletions
12
guide.html
12
guide.html
|
@ -2,7 +2,7 @@
|
|||
<html lang="en">
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<link rel="stylesheet" href="style/style.css">
|
||||
<link rel="stylesheet" href="style/guide.css">
|
||||
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
|
||||
<title>SMS GCT Generator</title>
|
||||
</head>
|
||||
|
@ -39,11 +39,11 @@
|
|||
<p>This is not a practice code related issue. To fix this your best option is to reinstall homebrew.</p>
|
||||
<h3 id="3.2"><a href="#3.2">3.2 The game launches but the codes don't work</a></h3>
|
||||
<p>This can have multiple reasons:</p>
|
||||
<ul class="nostyle">
|
||||
<li class="nostyle">You don't have cheats enabled: See <a href="#2.3">2.3</a> for details.</li>
|
||||
<li class="nostyle">Your cheatfile has the wrong name: Make sure the file is named "GMSE01.gct", "GMSJ01.gct" or "GMSP01.gct". It won't work with names like "GMSE01 (1).gct". Nintendont is very picky!</li>
|
||||
<li class="nostyle">Your cheatfile is at the wrong location: Make sure the file is in the "codes" folder of your SD Card. Again, the folder has to be named "codes". If you have a "games" folder, make sure there's no file with the same name in it or its subfolders.</li>
|
||||
<li class="nostyle">Your cheatfile is too big: Using too many codes at once can cause Nintendont to disable them since the used space in the game is limited. Make sure you don't have two incompatible codes selected when downloading the cheatfile (for example "Level Select" and "Ingame Timer" are not compatible).</li>
|
||||
<ul>
|
||||
<li>You don't have cheats enabled: See <a href="#2.3">2.3</a> for details.</li>
|
||||
<li>Your cheatfile has the wrong name: Make sure the file is named "GMSE01.gct", "GMSJ01.gct" or "GMSP01.gct". It won't work with names like "GMSE01 (1).gct". Nintendont is very picky!</li>
|
||||
<li>Your cheatfile is at the wrong location: Make sure the file is in the "codes" folder of your SD Card. Again, the folder has to be named "codes". If you have a "games" folder, make sure there's no file with the same name in it or its subfolders.</li>
|
||||
<li>Your cheatfile is too big: Using too many codes at once can cause Nintendont to disable them since the used space in the game is limited. Make sure you don't have two incompatible codes selected when downloading the cheatfile (for example "Level Select" and "Ingame Timer" are not compatible).</li>
|
||||
</ul>
|
||||
<h3 id="3.3"><a href="#3.3">3.3 The site doesn't show codes or the download button</a></h3>
|
||||
<p>The main site requires Javascript to work properly. Make sure you have Javascript enabled in your browser.</p>
|
||||
|
|
28
style/guide.css
Normal file
28
style/guide.css
Normal file
|
@ -0,0 +1,28 @@
|
|||
body {
|
||||
margin: 50px 50px 0 50px;
|
||||
width: 1200px;
|
||||
}
|
||||
html {
|
||||
background-color: #262626;
|
||||
color: #f1f1f1;
|
||||
font-family: Calibri;
|
||||
}
|
||||
img {
|
||||
border-radius: 4px;
|
||||
}
|
||||
#guide_content {
|
||||
clear:both;
|
||||
background-color:#111;
|
||||
width:100%;
|
||||
max-width:960px;
|
||||
overflow:hidden;
|
||||
border:1px solid #333;
|
||||
margin: 30px 0 10px 0;
|
||||
padding: 0px 12px 12px 12px;
|
||||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
font-size: 14px;
|
||||
line-height: 22px;
|
||||
}
|
||||
a {
|
||||
color: pink;
|
||||
}
|
|
@ -28,13 +28,13 @@ body button {
|
|||
img {
|
||||
border-radius: 4px;
|
||||
}
|
||||
ul:not(.nostyle) {
|
||||
ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
width: 500px;
|
||||
list-style-type: none;
|
||||
}
|
||||
ul li:not(.nostyle) {
|
||||
ul li {
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
padding: 12px 8px 12px 40px;
|
||||
|
@ -48,7 +48,7 @@ ul li:not(.nostyle) {
|
|||
user-select: none;
|
||||
outline: none;
|
||||
}
|
||||
ul li::before:not(.nostyle) {
|
||||
ul li::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
border-color: #a6a6a6;
|
||||
|
@ -60,10 +60,10 @@ ul li::before:not(.nostyle) {
|
|||
height: 15px;
|
||||
width: 15px;
|
||||
}
|
||||
ul li:nth-child(odd):not(.nostyle) {
|
||||
ul li:nth-child(odd) {
|
||||
background: #fdfdfd;
|
||||
}
|
||||
ul li:hover:not(.nostyle) {
|
||||
ul li:hover {
|
||||
/*background: #ddd;*/
|
||||
|
||||
background: #565656;
|
||||
|
|
Loading…
Reference in a new issue