diff --git a/index.html b/index.html index 4c40e82..b597b9d 100644 --- a/index.html +++ b/index.html @@ -5848,16 +5848,18 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); } #coinLogo { width: 55px; height: 55px; padding: 10px; position: absolute; top: 2px; left: 10px; } #coinLogoImg { width: 100%; height: 100%; } -.coinIcoin { width: 62px; height: 62px; padding: 10px; position: absolute; top: 268px; left: 49px; } +.coinIcoin { width: 62px; height: 62px; padding: 10px; position: absolute; top: 273px; left: 49px; } #coinImg { width: 100%; height: 100%; } #main { position: relative; text-align: center; margin: 0px auto; width: 1005px; } #logo { width: 578px; height: 80px; } + +.backLogo { float: right; width: 50px; height: 50px; } #paperarea { min-height: 120px; display: none; } #paperarea .keyarea { border: 1px solid #BFBFBF; border-top: 0; } #paperarea .keyarea.art { display: block; height: auto; border: 0; font-family: Ubuntu, Arial; padding: 0; margin: 0; } -#paperarea .artwallet .papersvg { width: 1004px; height: 420px; border: 0; margin: 0; padding: 0; left: 0; } +#paperarea .artwallet .papersvg { width: 1004px; height: 426px; border: 0; margin: 0; padding: 0; left: 0; } #paperarea .artwallet .qrcode_public { top: 260px; left: 780px; z-index: 100; margin: 0; float: none; display: block; position: absolute; background-color: #FFFFFF; padding: 5px 5px 2px 5px; } #paperarea .artwallet .qrcode_private { top: 36px; right: 446px; z-index: 100; margin: 0; float: none; display: block; position: absolute; background-color: #FFFFFF; @@ -5895,8 +5897,9 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); } transform: rotate(180deg); } -.paperWalletText { bottom: 8px; height: 156px; left: 339px; padding: 15px 15px 17px 37px; position: absolute; width: 265px; font-size: 10px; color: #867474; } +.paperWalletText { bottom: 8px; height: 156px; left: 339px; padding: 15px 15px 17px 37px; position: absolute; width: 265px; font-size: 10px; color: #867474; line-height: 15px; } .paperWalletText ul { margin: 0px; padding: 0px; } +.paperWalletText li { line-height: 13px; margin-bottom: 5px; } #bulkarea .body { padding: 5px 0 0 0; } #bulkarea .format { font-style: italic; font-size: 90%; } @@ -6512,7 +6515,7 @@ janin.currency = { useCurrency: function(index) { janin.selectedCurrency = janin.currencies[index]; - var coinImgUrl = "logos/" + janin.selectedCurrency.name + ".png"; + var coinImgUrl = "logos/" + janin.selectedCurrency.name.toLowerCase() + ".png"; document.getElementById("coinLogoImg").src = coinImgUrl; // Regenerate a new wallet when not expensive @@ -8260,8 +8263,8 @@ ninja.wallets.paperwallet = { if (ninja.wallets.paperwallet.encrypt) keyelement = 'btcencryptedkey' - var coinImgUrl = "logos/" + janin.selectedCurrency.name + ".png"; - var walletBackgroundUrl = "wallets/" + janin.selectedCurrency.name + ".png"; + var coinImgUrl = "logos/" + janin.selectedCurrency.name.toLowerCase() + ".png"; + var walletBackgroundUrl = "wallets/" + janin.selectedCurrency.name.toLowerCase() + ".png"; var walletHtml = "
currency_logo
" + @@ -8270,7 +8273,7 @@ ninja.wallets.paperwallet = { "
" + "
" + "
" + - "
" + + "
Amount : ___________       Date : ________________
Notes : ______________________________________
" + "
"; return walletHtml; },