Skip to content

Commit

Permalink
Merge pull request #830 from Mubashir2611/footerUI
Browse files Browse the repository at this point in the history
feat: Adding footer UI
  • Loading branch information
apu52 authored Jun 26, 2024
2 parents be88e5a + 230a9fa commit 5be7a40
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 4 deletions.
9 changes: 8 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -978,7 +978,14 @@ <h4 class="footer__subtitle">Support</h4>
<p><a href="#cnt-form" class="footer__link">Contact Us</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
17 changes: 14 additions & 3 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -1213,11 +1213,22 @@ body.dark-theme #emailInput {
text-align: center;
flex-direction: column;
}
.social-icon a {
transition: transform 0.3s ease;
padding: 10px;
}

/*.footer__col:nth-child(2) {
margin-top: 10px;

.social-icon a:hover {
transform: scale(1.1);
color: white;
}
*/
.footer:hover{
background: linear-gradient(135deg, #654ea3, #eaafc8);
}




.footer__col h3 {
font-size: 1.5rem;
Expand Down

0 comments on commit 5be7a40

Please sign in to comment.