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

Footer updated #5

Closed
wants to merge 3 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
57 changes: 54 additions & 3 deletions src/containers/footer/Footer.jsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,64 @@
import React from 'react';
import './footer.css';


const Footer = () => (
<div className="cs__footer section__padding">

<div className="cs__footer-copyright">
<p>@2022 IEEE Computer Society. All rights reserved.</p>
<footer>
<div className="container pt-5 border-bottom">
<div className="row">
<div className="col-md-3 col-sm-12 mb-3 text-center pt-5">
<img src="https://ieeecs-media.computer.org/wp-media/2018/04/02183615/IEEE-CS_LogoTM-orange-300x103.png" alt='logo' style={{width: "200px"}}/>

</div>
<div className="col-md-9 col-sm-12 p-5 pl-10">
<div className="row">
<div className="col-md-4 col-sm-6 col-6 ps-2 mb-3">
<h5 className="mb-4 font-weight-bold text-uppercase text-decoration-underline">Menu</h5>
<ul className="list-group">
<li className="list-group-item bg-transparent border-0 p-0 mb-2"><a href="/">Home</a></li>
<li className="list-group-item bg-transparent border-0 p-0 mb-2"><a href="/">About</a></li>
<li className="list-group-item bg-transparent border-0 p-0 mb-2"><a href="/">Events</a></li>
<li className="list-group-item bg-transparent border-0 p-0 mb-2"><a href="/">Team</a></li>
<li className="list-group-item bg-transparent border-0 p-0 mb-2"><a href="/">Contact</a></li>

</ul>
</div>

<div className="col-md-4 col-sm-6 col-6 mb-3 p-0 ">
<h5 className="mb-4 font-weight-bold text-uppercase text-decoration-underline text-right">Connect</h5>
<ul className="list-group">
<li className="list-group-item bg-transparent border-0 p-0 mb-2">
<a href="https://in.linkedin.com/company/ieeesbnitdgp">LinkedIn</a>
</li>
<li className="list-group-item bg-transparent border-0 p-0 mb-2">
<a href="https://www.facebook.com/nitdgpieeesociety/">Facebook</a>
</li>
<li className="list-group-item bg-transparent border-0 p-0 mb-2">
<a href="https://twitter.com/ieeesbnitd">Twitter</a>
</li>

</ul>
</div>
<div className="col-md-4 col-sm-12 col-6 mb-3 p-0 text-right">

<p> We here at, IEEECS Lorem ipsum, dolor sit amet consectetur adipisicing elit. Error quam, ipsam fugiat id architecto quis aut reiciendis dolorem optio natus illo ex, dolorum eos esse, voluptate maxime molestias quisquam hic?</p>
</div>

</div>
</div>
<div className="col-md-12">
<div className="py-4 d-flex justify-content-center align-items-center">

<div className="cs__footer-copyright">
<p className='text-center'>@2022 IEEE Computer Society. All rights reserved.</p>
</div>
</div>
</div>
</div>

</div>
</footer>
);

export default Footer;
49 changes: 46 additions & 3 deletions src/containers/footer/footer.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.cs__footer {
/* .cs__footer {
display: flex;
flex-direction: column;
justify-content: center;
Expand Down Expand Up @@ -113,8 +113,51 @@
font-family: var(--font-family);
line-height: 15px;
color: #fff;
}

} */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;400;500;600&display=swap');

/* Footer styling */
body {
/* font-family: Rubik,Arial,sans-serif; */
font-family: 'Poppins', sans-serif;
font-weight: 400;
font-size: 1rem;
overflow-x: hidden;
color: #607289;

}
footer{
overflow: hidden;
}
h5 {
font-size: 1rem;
line-height: 1.375;
font-family: Rubik,Arial,sans-serif;
font-family: 'Poppins', sans-serif;
font-weight: 500;
color: #030929;
}

a {
color: #818494;
font-weight: 500;
text-decoration: none;
background-color: transparent;
}

a:hover {
color: #007bff;
text-decoration: none;
}

footer {
background: #ebf4fa;
}

.text-underline{
border-bottom: 1px solid black;
}
@media screen and (max-width: 850px) {
.cs__footer-heading h1 {
font-size: 44px;
Expand Down