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

Created footer #107

Merged
merged 1 commit into from
Oct 29, 2022
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
41 changes: 29 additions & 12 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,20 +60,37 @@ <h4 id="your-tasks">Your Tasks :</h4>
</section>

<footer>
<div class="row" style="margin-top: 55px; font-weight:bold; color:rgb(195, 202, 202)">
<p>
Copyright &copy; 2022 by Sharanya. All rights reserved.
</p>
<p class="footer-desc">This project is a part of <a class="footer-desc"
href="https://hacktoberfest.digitalocean.com/" target="_blank"
rel="noopener noreferrer">Hacktoberfest
2022</a>
</p>

</div>
</footer>



</footer>
</main>
<section class="footer">
<div><a class="navbar-brand brand-name" href="#"><img src="images/favicon.png" alt="Brand-iamge" class="brand"></a>
<div class="row" style="margin-top: 19px; font-weight:bold; color:rgb(195, 202, 202)">
<span class="span">Created By <a href="https://github.com/Rick-mad-lab" target="_blank"
style="color: #337ab7; text-decoration: none;"> Sharanya
</a>| <span class="far fa-copyright"></span> 2022 All rights reserved.</span>
<p class="footer-desc">This project is a part of <a class="footer-desc"
href="https://hacktoberfest.digitalocean.com/" target="_blank"
rel="noopener noreferrer">Hacktoberfest
2022</a></p>
<a class="social" id="linkedin" href="https://linkedin.com/in/sharanya-mitra-988512224/" target="_blank">
<span class="icon"><i class="fab fa-linkedin"></i></span>
</a>
<a class="social" id="insta" href="https://www.instagram.com/sharanya__mitra/" target="_blank">
<span class="icon"><i class="fab fa-instagram"></i></span>
</a>
<a class="social" id="github" href="https://github.com/Rick-mad-lab" target="_blank">
<span class="icon"><i class="fab fa-github-square"></i></span>
</a>
<a class="social" id="twitter" href="https://twitter.com/@sharanyamitra2" target="_blank">
<span class="icon"><i class="fab fa-twitter-square"></i></span>
</a>

</div>

</section>

<!-- Project -->
<script src="main.js"></script>
Expand Down
56 changes: 54 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ body {
background: rgb(2,0,36);
background: linear-gradient(30deg, rgba(2,0,36,1) 0%, rgb(92, 92, 187) 19%, rgba(0,212,255,1) 100%);
font-family: 'Poppins', sans-serif;
overflow: hidden;
overflow-x: hidden;
}

main {
display: flex;
justify-content: center;
align-items: flex-start;
height: 100vh;
height: auto;
}
.container{
text-align: center;
Expand Down Expand Up @@ -375,4 +375,56 @@ font-family: 'Scope One', serif;
.err-msg{
padding-top: 8rem;
color: #000;
}

.footer{
height: 150px;
width:100%;
text-align: center;
background-color: white;
}
.social{
font-size: 30px;
color: #fcfcfc;
float: right;
margin-right: 15px;
margin-top: -35px;
background: #000;
padding:4px 10px ;
border-radius: 70%;
}
.brand{
margin-top: -20px;
width: 60px;
height: 60px;
}
#linkedin:hover{
color: #fcfcfc;
background-color: #04669A;
}
#github:hover{
color: #fcfcfc;
background-color: #000;
}
#twitter:hover{
color: #fcfcfc;
background-color: #00acee;
}
#insta:hover{
color: #fcfcfc;
background: linear-gradient(
45deg,
#f09433 0%,
#e6683c 25%,
#dc2743 50%,
#cc2366 75%,
#bc1888 100%
);
}
.span{
font-size: 18px;
}
.footer-desc{
font-size: 12px;
margin-top: 5px;
}