Skip to content

Commit

Permalink
Added donation link
Browse files Browse the repository at this point in the history
  • Loading branch information
LOUDO56 committed May 1, 2024
1 parent bb230d7 commit 61cf70a
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 4 deletions.
Binary file added assets/heart.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions download.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
<a href="/" class="title-software">PyMacroRecord</a>
</div>
<div class="links">
<a href="/">Home</a>
<a href="download">Download</a>
<a href="https://github.com/LOUDO56/PyMacroRecord">Github</a>
<a href="https://github.com/LOUDO56/PyMacroRecord/blob/main/TUTORIAL.md">Help</a>
<a href="https://ko-fi.com/loudo" target="_blank" class="donate"><img src="assets/heart.png" alt="heart png"> Donate</a>
</div>
<img src="assets/hamburger-icon.svg" alt="hambuger menu icon" class="hambuger-icon">
</nav>
Expand All @@ -33,10 +33,10 @@
<div class="links-mobile-menu">
<img src="assets/close.svg" alt="close icon" class="close-icon">
<div class="links-mobile">
<a href="/">Home</a>
<a href="download">Download</a>
<a href="https://github.com/LOUDO56/PyMacroRecord">Github</a>
<a href="https://github.com/LOUDO56/PyMacroRecord/blob/main/TUTORIAL.md">Help</a>
<a href="https://ko-fi.com/loudo" target="_blank" class="donate"><img src="assets/heart.png" alt="heart png"> Donate</a>
</div>
</div>

Expand Down
9 changes: 9 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
<a href="download">Download</a>
<a href="https://github.com/LOUDO56/PyMacroRecord">Github</a>
<a href="https://github.com/LOUDO56/PyMacroRecord/blob/main/TUTORIAL.md">Help</a>
<a href="https://ko-fi.com/loudo" target="_blank" class="donate"><img src="assets/heart.png" alt="heart png"> Donate</a>
</div>
<img src="assets/hamburger-icon.svg" alt="hambuger menu icon" class="hambuger-icon">
</nav>
Expand All @@ -39,6 +40,7 @@
<a href="download">Download</a>
<a href="https://github.com/LOUDO56/PyMacroRecord">Github</a>
<a href="https://github.com/LOUDO56/PyMacroRecord/blob/main/TUTORIAL.md">Help</a>
<a href="https://ko-fi.com/loudo" target="_blank" class="donate"><img src="assets/heart.png" alt="heart png"> Donate</a>
</div>
</div>

Expand Down Expand Up @@ -229,6 +231,13 @@ <h4 class="not-windows">Not having Windows? Follow this <a href="download#instal
So I hope this software will do the job!
</p>
</div>

<div class="support">
<p class="support-txt">Support &lt;3</p>
<p class="support-desc">Developing a software is not an easy task. If you really like this project, please consider making a small donation, it really helps and means a lot! &lt;3</p>
<a href='https://ko-fi.com/loudo' target='_blank'><img height='35' sclass="ko-fi-img" style='border:0px;height:46px;' src='https://az743702.vo.msecnd.net/cdn/kofi3.png?v=0' border='0' alt='Buy Me a Coffee at ko-fi.com' /></a>
</div>

</main>

<footer>
Expand Down
47 changes: 45 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ nav{
display: flex;
gap: 30px;
font-size: 18px;
align-items: center;

}

Expand Down Expand Up @@ -103,7 +104,7 @@ nav{
display: none;
}

.links-mobile-menu img{
.close-icon{
float: right;
margin-top: 17px;
margin-right: 20px;
Expand All @@ -114,7 +115,7 @@ nav{
position: fixed;
height: 100%;
width: 150px;
background-color: #d3d3d3;
background-color: #ebebeb;
right: -25em;
top: 0;
transition: 200ms ease;
Expand All @@ -133,6 +134,25 @@ nav{
text-decoration: none;
}

.donate{
background-color: #6786F2;
padding: 10px 15px;
border-radius: 10px;
color: white !important;
font-weight: 600;
display: flex;
align-items: center;
gap: 5px;
transition: 200ms ease;

}

.donate:hover{
text-decoration: none !important;
background-color: #839dfa;

}


/*
/*
Expand Down Expand Up @@ -187,6 +207,7 @@ nav{
background-color: #839dfa;
}


.not-windows{
margin-top: -10px;
font-size: 15px;
Expand Down Expand Up @@ -309,6 +330,28 @@ nav{
margin-top: 50px;
}

.support{
padding: 40px;
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
}

.support-txt{
font-size: 70px;
color: #e83f88;
text-align: center;
font-weight: bold;
margin-bottom: 40px;
}

.support-desc{
font-size: 18px;
max-width: 40em;
margin: 0 auto;
}


/*
/*
Expand Down

0 comments on commit 61cf70a

Please sign in to comment.