Skip to content

Commit

Permalink
Merge branch 'main' into enhance_footer
Browse files Browse the repository at this point in the history
  • Loading branch information
Shekhar-Raj authored Oct 3, 2024
2 parents 73acc8e + b220f0a commit 0b39977
Show file tree
Hide file tree
Showing 15 changed files with 668 additions and 453 deletions.
46 changes: 0 additions & 46 deletions .github/workflows/add-gssoc-label-pr.yml

This file was deleted.

27 changes: 0 additions & 27 deletions .github/workflows/mkdocs.yaml

This file was deleted.

3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{

"liveServer.settings.port": 5501
}
}
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
6 changes: 5 additions & 1 deletion Css-files/content.css
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ body {
.navbarbg {
padding: 8px 0;
background-color: hsl(20, 43%, 93%);
text-align: center;
text-align: left;
}

.navbarbg ul {
Expand Down Expand Up @@ -555,6 +555,10 @@ input
transform: translateY(-50%); /* Center the icon vertically */
color: gray; /* Icon color */
}
.input-icon input,
.input-icon textarea {
padding-left: 30px; /* Adjust padding to create space for the icon */
}

#contactForm {
display: flex;
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
Loading

0 comments on commit 0b39977

Please sign in to comment.