Skip to content

Commit

Permalink
Add footer UI
Browse files Browse the repository at this point in the history
  • Loading branch information
Mubashir2611 committed Jun 3, 2024
1 parent 6b980ba commit 362534d
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
8 changes: 8 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -871,6 +871,14 @@ <h4 class="footer__subtitle">Support</h4>
<a href="./privacy.html" class="footer__link">Privacy Policy</a>
<p class="footer__text">Contact Us</p>
</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
13 changes: 12 additions & 1 deletion styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -1123,7 +1123,7 @@ header {

.footer__col {
flex: 1;
max-width: 200px;
max-width: 100%;
margin: 10px;
text-align: center;
flex-direction: column;
Expand Down Expand Up @@ -1174,7 +1174,18 @@ header {
color: var(--extra-light);
border-top: 1px solid var(--text-light);
}
.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);
}
@media (width < 1200px) {
.header__image img:nth-child(1) {
max-width: 30vw;
Expand Down

0 comments on commit 362534d

Please sign in to comment.