Skip to content

Commit

Permalink
Update files
Browse files Browse the repository at this point in the history
  • Loading branch information
bogachenko committed Aug 29, 2024
1 parent 769478d commit f14f606
Show file tree
Hide file tree
Showing 5 changed files with 455 additions and 79 deletions.
431 changes: 392 additions & 39 deletions json-donate.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion scripts-donate.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ document.addEventListener("DOMContentLoaded", function() {
if(c) {
o.textContent = `${c.address}`;
let h = r[c.qrcode_address];
s.src = `data:image/svg+xml;base64,${h}`, n.style.display = "block", selectText(o), a.innerHTML = `<i>The coin <strong>${c.name}</strong> was chosen in the chain <strong>${l}</strong>. <u>Please double-check the details.</u><br>Make sure that the address have chosen is used only for transferring the chosen <strong>${c.name}</strong> coin or its wrapped version.<br><strong><span class="warning-text">The verification can be performed by comparing the contract address of the token with the contract address of the deposited token.</span></strong><br>Sending tokens that do not match the specified contract address will result in an irreversible loss of assets.</i>`
s.src = `data:image/svg+xml;base64,${h}`, n.style.display = "block", selectText(o), a.innerHTML = `<i>The <strong>${c.name}</strong> has been chosen for transfer in the <strong>${l}</strong> chain. <u>Please double-check the details.</u><br><span class="warning-text">Make sure that the address have chosen is only used to transfer the <strong>${c.name}</strong> coin.</span><br>Sending tokens that do not match the specified contract address will result in an irreversible loss of assets.</i>`
}
} else o.textContent = "", s.src = "", a.textContent = "", n.style.display = "none"
})
Expand Down
13 changes: 11 additions & 2 deletions stylesheet-404.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,31 +5,40 @@ font-size: 15px;
line-height: 1;
color: #24292e;
}
a:link, a:visited, a:active {

a:link,
a:visited,
a:active {
text-decoration: none;
color: #0366d6;
}

a:hover {
text-decoration: underline;
}

h3 {
font-size: 1.25em;
font-weight: 600;
}

@media(max-width:1300px) {
table {
width: auto;
}
}

table#page {
width: 100%;
height: 100%;
}

td#titlecolor {
background-color: #000000;
}

p.сopyright {
font-size: 0.6em;
font-size: 0.6em;
line-height: 14px;
text-align: center;
}
68 changes: 34 additions & 34 deletions stylesheet-donate.css
Original file line number Diff line number Diff line change
@@ -1,63 +1,63 @@
body {
font-family: Arial, sans-serif;
margin: 20px;
text-align: center;
font-family: Arial, sans-serif;
margin: 20px;
text-align: center;
}

select {
display: block;
padding: 5px;
width: 200px;
margin: 5px auto 15px;
display: block;
padding: 5px;
width: 200px;
margin: 5px auto 15px;
}

.result {
display: none;
margin-top: 20px
display: none;
margin-top: 20px
}

.result img {
max-width: 200px;
height: auto;
display: block;
margin: 10px auto 0;
max-width: 200px;
height: auto;
display: block;
margin: 10px auto 0;
}

#address {
word-wrap: break-word;
white-space: normal;
user-select: text;
cursor: text;
word-wrap: break-word;
white-space: normal;
user-select: text;
cursor: text;
}

.warning-text {
color: red;
color: red;
}

p.copyright a {
text-decoration: none;
color: #000;
font-weight: 700;
text-decoration: none;
color: #000;
font-weight: 700;
}

p.copyright a:hover {
line-height: 14px;
text-align: center;
text-decoration: none;
background-color: #000;
color: #dcdfe6;
line-height: 14px;
text-align: center;
text-decoration: none;
background-color: #000;
color: #dcdfe6;
}

.floating_element a:hover {
line-height: 14px;
text-align: center;
text-decoration: none;
background-color: #000;
color: #dcdfe6;
line-height: 14px;
text-align: center;
text-decoration: none;
background-color: #000;
color: #dcdfe6;
}

.floating_element a {
text-decoration: none;
color: #000;
font-weight: 700;
text-decoration: none;
color: #000;
font-weight: 700;
}
20 changes: 17 additions & 3 deletions stylesheet-main.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ font-size: 15px;
line-height: 1;
color: #24292e;
}

code {
padding: .2em .4em;
background-color: #f0f0f2;
Expand All @@ -13,52 +14,65 @@ font-family: Consolas, Liberation Mono, monospace;
line-height: 2;
word-break: break-word;
}
a:link, a:visited, a:active {

a:link,
a:visited,
a:active {
text-decoration: none;
color: #0366d6;
}

a:hover {
text-decoration: underline;
}

div {
width: 1300px;
padding: 50px;
background-color: #fff;
margin: 0 auto;
border-radius: 5px;
}

h1 {
font-size: 40px;
font-weight: 600;
}

h3 {
font-size: 1.25em;
font-weight: 600;
}

p {
font-size: 15px;
}

@media(max-width:1300px) {
div {
width: auto;
border-radius: 0;
padding: 30px;
}
}

#main-block {
border: 1px solid ThreeDShadow;
border-radius: 5px;
}

p.copyright {
font-size: 0.6em;
font-size: 0.6em;
line-height: 14px;
text-align: center;
}

p.footer {
font-size: 0.6em;
font-size: 0.6em;
line-height: 14px;
text-align: center;
}

ol {
padding-left: 2em;
}

0 comments on commit f14f606

Please sign in to comment.