Skip to content

Commit

Permalink
adding footer UI
Browse files Browse the repository at this point in the history
  • Loading branch information
Mubashir2611 committed Jun 8, 2024
1 parent 4106e34 commit 955d8c9
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
9 changes: 8 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -913,7 +913,14 @@ <h4 class="footer__subtitle">Support</h4>
<p><a href="#cnt-form" class="footer__link">Contact</a></p>
</div>
</div>

<div class="footer__col">
<p>Social Media</p>
<section class="social-icon">
<a href="#" class="fa-brands fa-facebook fa-2xl"></a>
<a href="#" class="fa-brands fa-instagram fa-2xl"></a>
<a href="#" class="fa-brands fa-twitter fa-2xl"></a>
</section>
</div>
<div class="footer__col">
<h4>Address</h4>
<div class="mapouter">
Expand Down
11 changes: 11 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -1217,7 +1217,18 @@ body.dark-theme #emailInput {
text-align: center;
flex-direction: column;
}
.social-icon a {
transition: transform 0.3s ease;
padding: 10px;
}

.social-icon a:hover {
transform: scale(1.1);
color: white;
}
.footer:hover{
background: linear-gradient(135deg, #654ea3, #eaafc8);
}
.footer__col:nth-child(2) {
margin-top: 10px;
}
Expand Down

0 comments on commit 955d8c9

Please sign in to comment.