affiliates added

This commit is contained in:
0ceanSlim 2023-08-07 15:56:21 -04:00
parent 234b6e24f6
commit 4f356679a2
5 changed files with 64 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

View File

@ -38,6 +38,13 @@
</div>
</div>
<div class="affiliates">
<div class="affiliate1"><a href="https://www.swanbitcoin.com/oceanslim"><img src="file:///android_asset/images/swan.png"> Dollar Cost Average Bitcoin with Swan!<br/>Free Automated withdrawal </a></div>
<div class="affiliate2"><a href="https://store.blockstream.com/?ref=3322"><img src="file:///android_asset/images/blockstream.jpg"> Shop Blockstream's Store<br/>(use code "HAPPYTAVERN" for 10% off Jade HW Wallet) </a></div>
<div class="affiliate3"><a href="use.foldapp.com/r/TT93PV3E"><img src="file:///android_asset/images/fold.png"> Stack Sats on your debit card purchases </a></div>
</div>
</body>
</html>

View File

@ -11,6 +11,14 @@ body {
text-align: center;
}
a {
color: #ff7500;
}
a:hover {
color: rgb(149, 0, 207);
}
.container {
width: auto;
margin-left: 20px;
@ -64,3 +72,52 @@ h1 {
text-align: center;
margin: 10px;
}
.affiliates {
max-width: 60%;
max-height: 25%;
position: fixed;
bottom: 5%;
right: 0%;
padding: 10px;
font-size: 14px;
font-weight: bolder;
text-align: center;
}
.affiliates img {
justify-content: center;
margin: 10px;
float: left;
width: 16px;
height: auto;
padding-right: 10px;
}
.affiliate1{
padding: 10px;
border: #ffffff;
border-style: solid;
border-radius: 8px;
border-width: 2px;
margin: 10px;
height: fit-content;
}
.affiliate2{
padding: 10px;
border: #ffffff;
border-style: solid;
border-radius: 8px;
border-width: 2px;
margin: 10px;
height: fit-content;
}
.affiliate3{
padding: 10px;
border: #ffffff;
border-style: solid;
border-radius: 8px;
border-width: 2px;
margin: 10px;
height: fit-content;
}