Skip to content

Commit

Permalink
Merge pull request #603 from Palmistry2310/improving-footer-design
Browse files Browse the repository at this point in the history
Improving footer design and adding hover effects
  • Loading branch information
PriyaGhosal authored Oct 13, 2024
2 parents a0f7fd6 + 3920737 commit 7044299
Showing 1 changed file with 7 additions and 12 deletions.
19 changes: 7 additions & 12 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,6 @@ h2 {

p {
font-size: 1.5em;
margin-bottom: 20px;
color: #666; /* Paragraph color */
}

Expand Down Expand Up @@ -753,7 +752,6 @@ textarea:focus{
footer {
background: linear-gradient(135deg, #343a40, #212529);
color: #ffffff;
padding: 40px 0;
text-align: center;
}

Expand Down Expand Up @@ -784,7 +782,7 @@ footer {


.footer-column h3 {
margin-bottom: 15px;
margin-bottom: 5px;
font-size: 18px;
color: #f39c12;
}
Expand All @@ -799,10 +797,6 @@ footer {
padding: 0;
}

.footer-column ul li {
margin-bottom: 10px;
}

.footer-column ul li a {
color: #ffffff;
text-decoration: none;
Expand All @@ -814,10 +808,6 @@ footer {
text-decoration: underline;
}

.social-icons {
margin-top: 20px;
}

.social-icons a {
margin: 0 10px;
color: #ffffff;
Expand All @@ -830,7 +820,6 @@ footer {
}

.footer-bottom {
margin-top: 20px;
font-size: 14px;
}

Expand All @@ -842,6 +831,7 @@ footer {
.social-icons .fa-facebook-f:hover{
color:#4267B2;
transform:scale(1.1);
transform: scale(1.2) translateY(-5px);
}

/* for twitter */
Expand All @@ -851,6 +841,7 @@ footer {
.social-icons .fa-x-twitter:hover{
color:black;
transform:scale(1.1);
transform: scale(1.2) translateY(-5px);
}
/* for instagram */
.social-icons .fa-instagram {
Expand All @@ -859,6 +850,7 @@ footer {
.social-icons .fa-instagram:hover{
color:#c32aa3;
transform:scale(1.1);
transform: scale(1.2) translateY(-5px);
}

/* for instagram */
Expand All @@ -868,6 +860,7 @@ footer {
.social-icons .fa-linkedin-in:hover{
color:#0a66c2;
transform:scale(1.1);
transform: scale(1.2) translateY(-5px);
}
/**** MEDIA QUERY ****/

Expand Down Expand Up @@ -901,10 +894,12 @@ footer {

footer {
text-align: center;

}

footer h5 {
padding-bottom: 3rem;

}
}

Expand Down

0 comments on commit 7044299

Please sign in to comment.