Skip to content

Commit

Permalink
Merge pull request #1087 from Antima2004/master
Browse files Browse the repository at this point in the history
Added Homebtn
  • Loading branch information
DharshiBalasubramaniyam authored Nov 6, 2024
2 parents dffbaa2 + dae6862 commit 9021369
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
5 changes: 5 additions & 0 deletions login.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,11 @@
</div>
</a>

<!-- back to home page -->
<a href="./index.html" class="homeBtn">
<i class="fas fa-home"></i>
</a>

<h1 style="margin-bottom: 10px;">Login to IcyCo</h1>
<form>
<div class="input-fields">
Expand Down
18 changes: 18 additions & 0 deletions styles/login-signup.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,24 @@ body {
min-height: 100dvh;
}

.homeBtn {
position: absolute;
top: 20px;
left: 20px;
background: #c08ea5;
color: #000000;
padding: 10px;
border-radius: 10px;
cursor: pointer;
transition: 0.3s;
text-decoration: none;
z-index: 10;
}
.homeBtn:hover {
background: #ffabd2;
color: #ffffff;
}

#logo {
display: flex;
justify-content: center;
Expand Down

0 comments on commit 9021369

Please sign in to comment.