Added a bitcoin qr code

This commit is contained in:
xemeds
2020-08-07 10:50:56 +03:00
parent c11b16c489
commit 13e0688b1d
3 changed files with 21 additions and 3 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

+20 -3
View File
@@ -46,13 +46,17 @@ body {
padding: 30px 0px;
box-shadow: 0px 10px 20px #000000;
width: 80vw;
height: auto;
height: 100px;
margin: 35vh auto 0 auto;
display: flex;
}
.inputs {
display: flex;
width: 80vw;
height: 50px;
justify-content: center;
margin: 25px 0;
}
.url {
@@ -60,7 +64,7 @@ body {
border: 2px solid #bb86fc;
color: #ffffff;
width: 60%;
padding: 10px 10px;
padding: 10px;
margin-left: 3%;
}
@@ -108,7 +112,20 @@ body {
color: #ffffff;
list-style: none;
text-align: center;
margin: 40vh auto 0 auto;
margin: 30vh auto 0 auto;
}
.donation h1 {
margin-bottom: 2vh;
}
.donation h4 {
margin-bottom: 4vh;
}
.donation img {
padding: 1vh;
background-color: #ffffff;
}
+1
View File
@@ -10,6 +10,7 @@
<ul class="donation">
<li><h1>Bitcoin Address</h1></li>
<li><h4>1Mg55rPVuQ2P8zKsCcLdsmgqH24uLXfLbR</h4></li>
<li><img src="{{ url_for('static', filename='qr.png') }}" alt="Bitcoin QR Code"></li>
</ul>
</body>
{% endblock %}