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

Improving the Footer #212

Merged
merged 3 commits into from
Oct 18, 2023
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
47 changes: 12 additions & 35 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -127,43 +127,20 @@ <h2><label for=""> First-appearance: </label></h2>
<br />

</div>
<div class="bottom-container">


<a class="footer-link" href="https://www.linkedin.com/feed/"
><img
class="footer-img linkedin tilt pic"
id="linkedin"
src="./images/linkedin.png"
alt="linkedin"
/>
</a>


<a class="footer-link" href="https://twitter.com/home"
><img
class="footer-img twitter tilt pic"
id="twitter"
src="./images/twitter.png"
alt="Twitter"
/>
</a>

<a class="footer-link" href="https://github.com/Prajwal0225" target="_blank">

<img
class="footer-img global tilt pic"
id="github"
src="./images/github.png"
alt="Github"
/>
</a>

<p class="bookmark">
© <span id="year"></span> Superhero's World By Prajwal Somalkar. All
<!-- Footer -->
<div class="footer-container">
<div class="social-icons">
<a href="https://www.linkedin.com/feed/"><i class="fa-brands fa-linkedin"></i></a>
<a href="https://twitter.com/home"><i class="fa-brands fa-x-twitter"></i></a>
<a href="https://github.com/Prajwal0225"><i class="fa-brands fa-github"></i></a>
</div>
</div>
<div class="footer-bottom">
<p>
&copy;<span id="year"></span> Superhero's World By Prajwal Somalkar. All
rights reserved.
</p>
</div>
</div>
</center>
<script src="script.js"></script>
</body>
Expand Down
42 changes: 42 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -695,6 +695,48 @@ center {
animation: spin-horizontal 2s linear infinite;
}

.footer-container{
width:100%;
padding: 70px 30px 20px;
}

.social-icons{
display:flex;
justify-content: center;
}

.social-icons a{
text-decoration: none;
padding: 10px;
background-color: white;
margin:20px;
border-radius: 50%;
}

.social-icons a i{
font-size: 2em;
color: black;
opacity: 0.9;
}
.social-icons a:hover{
background-color: #111;
transition: 0.5s;
}
.social-icons a:hover i{
color:white;
transition: 0.5s;
}
.footer-bottom{
padding:10px;
padding-bottom: 100px;
text-align: center;
background-color: #000;
}
.footer-bottom p{
color:white;
}


@media screen and (max-width: 406px) {
.head-title {
font-size: 50px;
Expand Down
Loading