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

Addition of footer section #655

Closed
wants to merge 2 commits into from
Closed
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
162 changes: 161 additions & 1 deletion src/Homepage/Homepage/Homepage.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*::before,
*::after {
content: "";
position: absolute;
/* position: absolute; */
box-sizing: border-box;
}
body {
Expand Down Expand Up @@ -627,3 +627,163 @@ body {
margin-top:10px;
margin-bottom:20px;
}

/*Footer Section */
a {
text-decoration: none;
color: #fff;

}

footer {
position: absolute;

bottom: 0;

left: 0;

right: 0;

height: auto;

position: static;
bottom: 0;
width: 100%;

/* width: 100vw; */

padding-top: 40px;
margin-top: auto;
color: #fff;
}

.footer-content {
display: flex;

align-items: center;

justify-content: center;

flex-direction: column;

text-align: center;

/* margin-top: auto; */


}

.footer-content h3 {
font-size: 2.1rem;

font-weight: 500;

text-transform: capitalize;

line-height: 3rem;
}

.footer-content p {
max-width: 500px;

margin: 10px auto;

line-height: 28px;

font-size: 14px;

color: #cacdd2;
}


.socials {
list-style: none;

display: flex;

align-items: center;

justify-content: center;

margin: 1rem 0 3rem 0;
}

.socials li {
margin: 0 10px;
}

.socials a {
text-decoration: none;

color: #fff;

padding: 5px;
}

.socials a i {
font-size: 1.1rem;

width: 20px;

transition: color 0.4s ease;
}

.socials a:hover i {
color: aqua;
}

.footer-bottom {
background: #000;

width: 100vw;

padding: 20px;

padding-bottom: 40px;

text-align: center;
}

.footer-bottom p {
float: left;

font-size: 14px;

word-spacing: 2px;
}

.footer-bottom p a {
color: #ccc;

font-size: 16px;

text-decoration: none;
}

.footer-bottom span {
text-transform: uppercase;
}

.footer-menu {
float: right;
}

.footer-menu ul {
display: flex;
}

.footer-menu ul li {
padding-right: 10px;

display: block;
}

.footer-menu ul li a {
color: #cfd2d6;

text-decoration: none;
}

.footer-menu ul li a:hover {
color: #27bcda;
}
24 changes: 24 additions & 0 deletions src/Homepage/Homepage/Homepage.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,30 @@ function Homepage() {
))}
</div>
</div>
{/* Footer Section */}
<footer>

<div className="footer-content footer">

<h7>Developed with 💗 by Pratigya</h7>

<p>Make sure you checkout my socials and also ⭐ Game-and-Go on github</p>

<ul className="socials">

<li><a href="https://github.com/panwar8279"><i className="fa fa-github"></i></a></li>

<li><a href="https://twitter.com/pratigyapanwar"><i className="fa fa-twitter"></i></a></li>

<li><a href="https://in.linkedin.com/in/pratigya-panwar-37768b199"><i className="fa fa-linkedin-square"></i></a></li>

</ul>

</div>

</footer>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"/>

<div className="copyright">
<h3>&copy;Copyright IEEE-SSIT {new Date().getFullYear()}</h3>
</div>
Expand Down
Loading