Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

enhanced footer icons color and size #88

Merged
merged 3 commits into from
Oct 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Coverpage.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<title>Retro</title>
<meta http-equiv="refresh" content="30">
<link rel="shortcut icon" type="image/x-icon" href="./Favicon image/favicon-32x32.png">
<link rel="stylesheet" href="./style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style id="background-color">
body {
Expand Down
48 changes: 33 additions & 15 deletions Html-files/Electronic.html
Original file line number Diff line number Diff line change
Expand Up @@ -322,16 +322,33 @@
background-color: rgb(196, 89, 89);
}

.social-icons a {
font-size: 1.2rem;
padding: 15px;
text-decoration: none;
color: white;
}

.fa-facebook:hover { color: #3B5998; }
.fa-instagram:hover { color: #D62976; }
.fa-twitter:hover { color: #00B6F1; }

.social-icons a {
font-size: 1.2rem;
padding: 8px;
margin: 15px;
text-decoration: none;
color: rgb(248, 243, 243);
}

.social-icons a:hover {
color: brown;
background-color: hsl(203%, 29%, 91%);
border-radius: 10px;
transform: scale(1.5); /* Increase size */
transition: transform 0.3s ease; /* Smooth transition effect */
}
.fa-brands.fa-facebook:hover {
color: #3B5998 !important;
}

.fa-brands.fa-instagram:hover {
color: #D62976 !important;
}

.fa-brands.fa-x-twitter:hover {
color: #181e20 !important;
}

#sr {
display: none;
Expand Down Expand Up @@ -661,12 +678,13 @@ <h3 style="font-family: var(--ff-philosopher);color: black;">Contact Us!</h3>
<div class="pages">
<h2 style="font-family: var(--ff-philosopher);color: black;">Follow Us</h2>


<div class="social-icons">
<div class="social-icons">
<a class="fa-brands fa-facebook" href="https://facebook.com" target="_blank"></a>
<a class="fa-brands fa-instagram" href="https://instagram.com" target="_blank"></a>
<a class="fa-brands fa-x-twitter" href="https://twitter.com" target="_blank"></a>
</div>
<a class="fa-brands fa-facebook" href="https://facebook.com" style="color: hsl(203, 29%, 91%);"></a>
<a class="fa-brands fa-instagram" href="https://instagram.com" style="color: hsl(203, 29%, 91%);"></a>
<a class="fa-brands fa-x-twitter" href="https://twitter.com" style="color: hsl(203, 29%, 91%);"></a>
</div>

</div>
<p style="margin-bottom:0;font-family: var(--ff-philosopher);color: white;">Stay connected with us on social media for the latest updates, latest collection, and vintage adventures.
</p>
Expand Down
46 changes: 39 additions & 7 deletions Html-files/cart.html
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,34 @@
--ff-philosopher: "Philosopher", sans-serif;
--ff-poppins: "Poppins", sans-serif;
}

.social-icons a {
font-size: 1.2rem;
padding: 8px;
margin: 15px;
text-decoration: none;
color: rgb(17, 13, 13);
}
.social-icons a:hover {
color: brown;
background-color: hsl(22, 76%, 85%);
border-radius: 10px;
transform: scale(1.5); /* Increase size */
transition: transform 0.3s ease; /* Smooth transition effect */
}
.fa-brands.fa-facebook:hover {
color: #3B5998 !important;
}

.fa-brands.fa-instagram:hover {
color: #D62976 !important;
}

.fa-brands.fa-x-twitter:hover {
color: #151b1c !important;
}


</style>
</head>

Expand Down Expand Up @@ -295,15 +323,19 @@ <h3 style="font-family: var(--ff-philosopher);">Contact Us!</h3>

<div class="foot_panel4">
<div class="pages">
<h2 style="color: hsl(203, 30%,26%);font-family: var(--ff-philosopher);" class="follow-us">Follow Us</h2>
<h4 style="color: hsl(203, 30%,26%);font-family: var(--ff-philosopher); margin: 10px;">Follow Us</h4>
<div class="social-icons">
<i class="fa-brands fa-facebook"></i>&nbsp;&nbsp;&nbsp;&nbsp;
<i class="fa-brands fa-instagram"></i>&nbsp;&nbsp;&nbsp;&nbsp;
<i class="fa-brands fa-x-twitter"></i>&nbsp;&nbsp;&nbsp;
</div><br>
<p style="margin-bottom:0;font-family: var(--ff-philosopher);">Stay connected with us on social media for the latest updates, latest collection, and vintage adventures.


<a class="fa-brands fa-facebook" href="https://facebook.com" style="color: hsl(203, 30%, 26%);"></a>
<a class="fa-brands fa-instagram" href="https://instagram.com" style="color: hsl(203, 30%, 26%);"></a>
<a class="fa-brands fa-x-twitter" href="https://twitter.com" style="color: hsl(203, 30%, 26%);"></a>

</div>

<p style="margin-bottom:0;font-family: var(--ff-philosopher); margin-top: 5px;">Stay connected with us on social media for the latest updates, latest collection, and vintage adventures.
</p>
<div class="copyright" style="color: hsl(203, 30%,26%);font-family: var(--ff-philosopher);">
<div class="copyright" style="color: hsl(203, 30%,26%);font-family: var(--ff-philosopher); margin: 3px;">
© 2024 Retro . All Rights Reserved. | <span id="author">
<a href="https://www.linkedin.com" target="_blank" style="text-decoration: none;">Retro Team</a>
</span><p></p>
Expand Down
34 changes: 30 additions & 4 deletions Html-files/contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,32 @@
100% {
transform: rotate(360deg);
}
}
.social-icons a {
font-size: 1.2rem;
padding: 8px;
margin: 15px;
text-decoration: none;
color: rgb(18, 16, 16);
}

.social-icons a:hover {
color: brown;
background-color: hsl(22, 76%, 85%);
border-radius: 10px;
transform: scale(1.5); /* Increase size */
transition: transform 0.3s ease; /* Smooth transition effect */
}
.fa-brands.fa-facebook:hover {
color: #3B5998 !important;
}

.fa-brands.fa-instagram:hover {
color: #D62976 !important;
}

.fa-brands.fa-x-twitter:hover {
color: #181e20 !important;
}
</style>
</head>
Expand Down Expand Up @@ -460,12 +486,12 @@ <h3 style="text-align: center; margin-bottom: 15px;">Contact Us!</h3>

<div class="foot_panel4" style="color: black;background-color: transparent;">
<div class="pages" style="background-color: transparent;">
<h4>Follow Us</h4>
<h3>Follow Us</h3>

<div class="social-icons">
<i class="fa-brands fa-facebook"></i>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<i class="fa-brands fa-instagram"></i>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<i class="fa-brands fa-x-twitter"></i>
<a class="fa-brands fa-facebook" href="https://facebook.com" style="color: hsl(203, 30%, 26%);"></a>
<a class="fa-brands fa-instagram" href="https://instagram.com" style="color: hsl(203, 30%, 26%);"></a>
<a class="fa-brands fa-x-twitter" href="https://twitter.com" style="color: hsl(203, 30%, 26%);"></a>
</div>
<p style="margin-bottom:0;">Stay connected with us on social media for the latest updates, recipes, and foodie adventures.
</p>
Expand Down
32 changes: 31 additions & 1 deletion Html-files/menu.html
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,33 @@
transform: rotate(360deg);
}
}

.social-icons a {
font-size: 1.2rem;
padding: 8px;
margin: 15px;
text-decoration: none;
color: rgb(18, 16, 16);
}

.social-icons a:hover {
color: brown;
background-color: hsl(22, 76%, 85%);
border-radius: 10px;
transform: scale(1.5); /* Increase size */
transition: transform 0.3s ease; /* Smooth transition effect */
}
.fa-brands.fa-facebook:hover {
color: #3B5998 !important;
}

.fa-brands.fa-instagram:hover {
color: #D62976 !important;
}

.fa-brands.fa-x-twitter:hover {
color: #181e20 !important;
}
</style>
</head>

Expand Down Expand Up @@ -568,9 +595,12 @@ <h3 style="font-family: var(--ff-philosopher);color: hsl(357, 82%,35%);font-fami
<h4 style="font-family: var(--ff-philosopher);color: hsl(304, 14%, 46%);">Follow Us</h4>

<div class="social-icons">


<a class="fa-brands fa-facebook" href="https://facebook.com" style="color: hsl(203, 30%, 26%);"></a>
<a class="fa-brands fa-instagram" href="https://instagram.com" style="color: hsl(203, 30%, 26%);"></a>
<a class="fa-brands fa-twitter" href="https://twitter.com" style="color: hsl(203, 30%, 26%);"></a>
<a class="fa-brands fa-x-twitter" href="https://twitter.com" style="color: hsl(203, 30%, 26%);"></a>

</div>
<p style="font-family: var(--ff-philosopher);margin-bottom:0;">Stay connected with us on social media for the latest updates, latest collection, and vintage adventures.
</p>
Expand Down
35 changes: 32 additions & 3 deletions Html-files/services.html
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,32 @@
100% {
transform: rotate(360deg);
}
}
.social-icons a {
font-size: 1.2rem;
padding: 8px;
margin: 15px;
text-decoration: none;
color: rgb(18, 16, 16);
}

.social-icons a:hover {
color: brown;
background-color: hsl(22, 76%, 85%);
border-radius: 10px;
transform: scale(1.5); /* Increase size */
transition: transform 0.3s ease; /* Smooth transition effect */
}
.fa-brands.fa-facebook:hover {
color: #3B5998 !important;
}

.fa-brands.fa-instagram:hover {
color: #D62976 !important;
}

.fa-brands.fa-x-twitter:hover {
color: #181e20 !important;
}
</style>
</head>
Expand Down Expand Up @@ -397,9 +423,12 @@ <h4 style="font-family: var(--ff-philosopher);color: hsl(203, 30%, 26%);">Follow

<div class="social-icons">
<div class="social-icons">
<a class="fa-brands fa-facebook" href="https://facebook.com" target="_blank"></a>
<a class="fa-brands fa-instagram" href="https://instagram.com" target="_blank"></a>
<a class="fa-brands fa-x-twitter" href="https://twitter.com" target="_blank"></a>


<a class="fa-brands fa-facebook" href="https://facebook.com" style="color: hsl(203, 30%, 26%);"></a>
<a class="fa-brands fa-instagram" href="https://instagram.com" style="color: hsl(203, 30%, 26%);"></a>
<a class="fa-brands fa-x-twitter" href="https://twitter.com" style="color: hsl(203, 30%, 26%);"></a>

</div>
</div>
<p style="margin-bottom:0;font-family: var(--ff-philosopher);color: hsl(203, 30%, 26%);">Stay connected with us on social media for the latest updates, latest collection, and vintage adventures.
Expand Down
20 changes: 20 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -569,6 +569,26 @@ textarea {
padding: 8px;
margin: 15px;
text-decoration: none;
color: rgb(18, 16, 16);
}

.social-icons a:hover {
color: brown;
background-color: hsl(22, 76%, 85%);
border-radius: 10px;
transform: scale(1.5); /* Increase size */
transition: transform 0.3s ease; /* Smooth transition effect */
}
.fa-brands.fa-facebook:hover {
color: #3B5998 !important;
}

.fa-brands.fa-instagram:hover {
color: #D62976 !important;
}

.fa-brands.fa-x-twitter:hover {
color: #181e20 !important;
/* color: white; */
}

Expand Down