First page style update.
This commit is contained in:
parent
682b16a7c2
commit
96e98ad35a
3 changed files with 51 additions and 3 deletions
|
@ -149,10 +149,43 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="generate">
|
<div id="generate">
|
||||||
|
|
||||||
|
|
||||||
<span id="generatelabelbitcoinaddress">Generating new Address...</span><br />
|
<span id="generatelabelbitcoinaddress">Generating new Address...</span><br />
|
||||||
<span id="generatelabelmovemouse">MOVE your mouse around to add some extra randomness... </span><span id="mousemovelimit"></span><br />
|
<span id="generatelabelmovemouse">MOVE your mouse around to add some extra randomness... </span><span id="mousemovelimit"></span><br />
|
||||||
<span id="generatelabelkeypress">OR type some random characters into this textbox</span> <input type="text" id="generatekeyinput" onkeypress="ninja.seeder.seedKeyPress(event);" /><br />
|
<span id="generatelabelkeypress">OR type some random characters into this textbox</span> <input type="text" id="generatekeyinput" onkeypress="ninja.seeder.seedKeyPress(event);" /><br />
|
||||||
<div id="seedpooldisplay"></div>
|
<div id="seedpooldisplay"></div>
|
||||||
|
|
||||||
|
<hr class="halfHR" />
|
||||||
|
|
||||||
|
<div class="frontPageText">
|
||||||
|
|
||||||
|
<div class="firstHalfSingleSafety">
|
||||||
|
|
||||||
|
<h3>Step 0. Follow the security checklist recommendation</h3>
|
||||||
|
<p>
|
||||||
|
First step is to <strong>download</strong> this website from <a href="https://github.com/MichaelMure/PaperWallet/archive/master.zip">Github</a> and open the index.html file directly from your computer. It's just too easy to sneak some evil code in the 6000+ lines of javascript to leak your private key, and you don't want to see your fund stolen. Code version control make it much easier to cross-check what actually run. For extra security, <strong>unplug your Internet access</strong> while generating your wallet.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<div class="securityChecklist">
|
||||||
|
<b>Security Checklist :</b>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li id="seedEnvSecurityCheck"></li>
|
||||||
|
|
||||||
|
<li id="seedBrowserSecurityCheck"></li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
Are you using a secure operating system guaranteed to be free of spyware and viruses, for example, an Ubuntu LiveCD?
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="secondHalfSingleSafety">
|
||||||
|
<img class="seedFrontPageImage" src="images/overview.png" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="wallets">
|
<div id="wallets">
|
||||||
|
|
19
src/main.css
19
src/main.css
|
@ -28,9 +28,19 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); height:
|
||||||
#seedpoolarea { display: none; }
|
#seedpoolarea { display: none; }
|
||||||
#seedpooldisplay { font-family: monospace; font-size: 1em; width: 640px; padding: 15px 5px; word-wrap: break-word; }
|
#seedpooldisplay { font-family: monospace; font-size: 1em; width: 640px; padding: 15px 5px; word-wrap: break-word; }
|
||||||
.seedpoint { width: 6px; height: 6px; display: block; border-radius: 3px; background-color: #80CF80; position: absolute; z-index: 10; }
|
.seedpoint { width: 6px; height: 6px; display: block; border-radius: 3px; background-color: #80CF80; position: absolute; z-index: 10; }
|
||||||
#generate { font-family: monospace; font-size: 1.25em; height: 305px; text-align: left; position: relative; padding: 5px; border: 1px solid #BFBFBF; background-color: white; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; }
|
#generate { font-size: 13px; text-align: left; position: relative; padding: 20px; border: 1px solid #BFBFBF; background-color: white; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; }
|
||||||
#generate span { padding: 5px 5px 0 5px; }
|
#generate span { padding: 5px 5px 0 5px; }
|
||||||
#generatekeyinput { position: relative; z-index: 20; }
|
#generatekeyinput { position: relative; z-index: 20; }
|
||||||
|
|
||||||
|
#generatelabelbitcoinaddress, #generatelabelmovemouse, #generatelabelkeypress {
|
||||||
|
font-size: 16px; font-family: monospace;
|
||||||
|
}
|
||||||
|
#mousemovelimit {
|
||||||
|
font-size: : 18px; font-family: monospace;
|
||||||
|
}
|
||||||
|
.frontPageText { position: relative; }
|
||||||
|
.halfHR { width: 640px; }
|
||||||
|
|
||||||
#keyarea { height: 250px; }
|
#keyarea { height: 250px; }
|
||||||
#keyarea .pubaddress { float: none; display: block; padding: 0; height: auto; }
|
#keyarea .pubaddress { float: none; display: block; padding: 0; height: auto; }
|
||||||
#keyarea .label { text-decoration: none; }
|
#keyarea .label { text-decoration: none; }
|
||||||
|
@ -68,14 +78,16 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); height:
|
||||||
right: 0px;
|
right: 0px;
|
||||||
width: 50%;
|
width: 50%;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.frontPageImage {
|
.frontPageImage, .seedFrontPageImage {
|
||||||
width: 100%;
|
|
||||||
-webkit-border-radius: 10px;
|
-webkit-border-radius: 10px;
|
||||||
-moz-border-radius: 10px;
|
-moz-border-radius: 10px;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
}
|
}
|
||||||
|
.frontPageImage { width: 100%; }
|
||||||
|
.seedFrontPageImage { max-height: 340px; }
|
||||||
|
|
||||||
.securityChecklist {
|
.securityChecklist {
|
||||||
background-color: #FFE6C9;
|
background-color: #FFE6C9;
|
||||||
|
@ -84,6 +96,7 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); height:
|
||||||
-webkit-border-radius: 10px;
|
-webkit-border-radius: 10px;
|
||||||
-moz-border-radius: 10px;
|
-moz-border-radius: 10px;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
.securityChecklist ul { padding: 5px 0 0 20px; }
|
.securityChecklist ul { padding: 5px 0 0 20px; }
|
||||||
|
|
|
@ -211,6 +211,7 @@ ninja.envSecurityCheck = function() {
|
||||||
default:
|
default:
|
||||||
}
|
}
|
||||||
document.getElementById('envSecurityCheck').innerHTML = innerHTML;
|
document.getElementById('envSecurityCheck').innerHTML = innerHTML;
|
||||||
|
document.getElementById('seedEnvSecurityCheck').innerHTML = innerHTML;
|
||||||
};
|
};
|
||||||
|
|
||||||
ninja.browserSecurityCheck = function() {
|
ninja.browserSecurityCheck = function() {
|
||||||
|
@ -221,6 +222,7 @@ ninja.browserSecurityCheck = function() {
|
||||||
innerHTML = '<span style="color: #990000;">Your browser does NOT support window.crypto.getRandomValues(), which is important for generating the most secure random numbers possible. Please use a more modern browser.</span>';
|
innerHTML = '<span style="color: #990000;">Your browser does NOT support window.crypto.getRandomValues(), which is important for generating the most secure random numbers possible. Please use a more modern browser.</span>';
|
||||||
}
|
}
|
||||||
document.getElementById('browserSecurityCheck').innerHTML = innerHTML;
|
document.getElementById('browserSecurityCheck').innerHTML = innerHTML;
|
||||||
|
document.getElementById('seedBrowserSecurityCheck').innerHTML = innerHTML;
|
||||||
}
|
}
|
||||||
|
|
||||||
ninja.getQueryString = function () {
|
ninja.getQueryString = function () {
|
||||||
|
|
Loading…
Add table
Reference in a new issue