Skip to content

Commit

Permalink
add badge element
Browse files Browse the repository at this point in the history
  • Loading branch information
Zachary-Masson committed Jun 16, 2024
1 parent a76f054 commit 5b83345
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
13 changes: 13 additions & 0 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
}

body {
position: relative;
width: 100%;
height: 100vh;

Expand All @@ -29,6 +30,18 @@ body {
background-color: rgb(14, 14, 14);
}

.made {
position: absolute;
right: 25px;
bottom: 25px;
}

.watchers {
position: absolute;
right: 25px;
top: 25px;
}

#calculator {
position: relative;

Expand Down
19 changes: 19 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,25 @@
</div>
</div>
</div>
<div class="watchers">
<a
href="https://github.com/Zachary-Masson/AppleCalculator"
target="_blank"
>
<img
src="https://img.shields.io/github/watchers/Zachary-Masson/AppleCalculator.svg"
alt=""
/>
</a>
</div>
<div class="made">
<a href="https://github.com/Zachary-Masson" target="_blank">
<img
src="https://img.shields.io/badge/Made%20with ❤-by Zachary–Masson-red?style=for-the-badge&logo=Github"
alt=""
/>
</a>
</div>
<script src="./assets/js/main.js"></script>
</body>
</html>

0 comments on commit 5b83345

Please sign in to comment.