Paper wallet css fixed when using encryption.
This commit is contained in:
parent
16a3125a8e
commit
86164fcacd
2 changed files with 9 additions and 2 deletions
10
src/main.css
10
src/main.css
|
@ -75,9 +75,15 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); }
|
|||
}
|
||||
#paperarea .artwallet .btcencryptedkey
|
||||
{
|
||||
position: absolute; top: 236px; left: 812px; z-index: 100; font-size: 8px; background-color: transparent;
|
||||
font-weight:bold; color: #000000; margin: 0;
|
||||
position: absolute; top: 16px; right: 357px; z-index: 100; font-size: 12px; background-color: transparent;
|
||||
font-weight:bold; color: #000000; margin: 0; width: 292px; height: 32px; text-align: center;
|
||||
-ms-transform: rotate(180deg); /* IE 9 */
|
||||
-webkit-transform: rotate(180deg); /* Chrome, Safari, Opera */
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
.paperWalletText { bottom: 8px; height: 175px; left: 339px; padding: 15px 15px 15px 25px; position: absolute; width: 294px; font-size: 10px; }
|
||||
.paperWalletText ul { margin: 0px; padding: 0px; }
|
||||
|
||||
#bulkarea .body { padding: 5px 0 0 0; }
|
||||
#bulkarea .format { font-style: italic; font-size: 90%; }
|
||||
#bulktextarea { font-size: 90%; width: 98%; margin: 4px 0 0 0; }
|
||||
|
|
|
@ -140,6 +140,7 @@ ninja.wallets.paperwallet = {
|
|||
"<div id='qrcode_private" + i + "' class='qrcode_private'></div>" +
|
||||
"<div class='btcaddress' id='btcaddress" + i + "'></div>" +
|
||||
"<div class='" + keyelement + "' id='" + keyelement + i + "'></div>" +
|
||||
"<div class='paperWalletText'><b>Paper Wallet</b><br /><br /><ul><li>To deposit funds to this paper wallet, send cryptocurrency to its public key, anytime.</li><li>Verify your balance by searching for the public address using a service such as blockchain.info.</li><li>DO NOT REVEAL THE PRIVATE KEY until you are ready to import the balance on this wallet to a cryptocurrency client, exchange or online wallet.</li><li>When withdrawing funds from this wallet you should remove the ENTIRE BALANCE. If you attempt to spend only some of the funds you will likely lose the remaining cryptocurrency forever.</li></ul></div>" +
|
||||
"</div>";
|
||||
return walletHtml;
|
||||
},
|
||||
|
|
Loading…
Add table
Reference in a new issue