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

Added Hover effect in social media icons - footer #235

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
56 changes: 28 additions & 28 deletions client/src/component/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,71 +7,71 @@ import { FaGithub, FaLinkedin, FaYoutube } from 'react-icons/fa';
const Footer = (props) => {
return (
<>
<hr style={{ border: '3px solid #0D92F4' }} />
<div className="Footer" style={{ backgroundColor: props.mode === 'dark' ? '#0B192C' : 'white'}}>
<hr style={{ border: '3px solid #0D92F4' }} />
<div className="Footer" style={{ backgroundColor: props.mode === 'dark' ? '#0B192C' : 'white' }}>

<div className="container">
<div className="container">
<div className="row">
<div className="col-md-6 col-lg-5 col-12 ft-1">
<h3 style={{ fontFamily: "medium", fontSize: "2.5rem" }}>BIT<span className='code' style={{ Color: "#0D92F4"}}>BOX</span></h3>
<p>Empowering Developers,<br/>
Where Projects Find solution together</p>
<div className="footer-icons">
<a href="https://github.com/bitboxcommunity" target="_blank" rel="noopener noreferrer" aria-label="GitHub">
<FaGithub color="#211F1F" fontSize="2rem" />
</a>
<a href="https://twitter.com/BITBOX688152" target="_blank" rel="noopener noreferrer" aria-label="Twitter">
<FaXTwitter color="#1da1f2" fontSize="2rem" />
</a>
<a href="https://www.youtube.com/channel/UCXUTdcw27jaH_go9iyUjJnA" target="_blank" rel="noopener noreferrer" aria-label="YouTube">
<FaYoutube color="red" fontSize="2rem" />
</a>
<a href="https://www.linkedin.com/in/bit-box-community" target="_blank" rel="noopener noreferrer" aria-label="LinkedIn">
<FaLinkedin color="#0077b5" fontSize="2rem" />
</a>
</div>
<h3 style={{ fontFamily: "medium", fontSize: "2.5rem" }}>BIT<span className='code' style={{ Color: "#0D92F4" }}>BOX</span></h3>
<p>Empowering Developers,<br />
Where Projects Find solution together</p>
<div className="footer-icons">
<a href="https://github.com/bitboxcommunity" target="_blank" rel="noopener noreferrer" aria-label="GitHub">
<FaGithub color="#211F1F" fontSize="2rem" />
</a>
<a href="https://twitter.com/BITBOX688152" target="_blank" rel="noopener noreferrer" aria-label="Twitter">
<FaXTwitter color="#1da1f2" fontSize="2rem" />
</a>
<a href="https://www.youtube.com/channel/UCXUTdcw27jaH_go9iyUjJnA" target="_blank" rel="noopener noreferrer" aria-label="YouTube">
<FaYoutube color="red" fontSize="2rem" />
</a>
<a href="https://www.linkedin.com/in/bit-box-community" target="_blank" rel="noopener noreferrer" aria-label="LinkedIn">
<FaLinkedin color="#0077b5" fontSize="2rem" />
</a>
</div>


</div>
<div className="col-md-6 col-lg-3 col-12 ft-2">
<h5>About</h5>
<ul>
<li className="nav-item">
<Link to="/contactus">Contact Us</Link>
<Link to="/contactus">Contact Us</Link>
</li>
<li className="nav-item">
<Link to='/codeofconduct'>Code of Conduct</Link>
<Link to='/codeofconduct'>Code of Conduct</Link>
</li>
</ul>
</div>
<div className="col-md-7 col-lg-4 col-13 ft-3">
<h5>Legals</h5>
<ul>
<li className="nav-item">
<Link to="/feedback">Feedback</Link>
<Link to="/feedback">Feedback</Link>
</li>
<li className="nav-item">
<Link to="/privacypolicy">Privacy Policy</Link>
<Link to="/privacypolicy">Privacy Policy</Link>
</li>
<li className="nav-item">
<li><Link to="/termofuse">Terms of use</Link></li>
<li><Link to="/termofuse">Terms of use</Link></li>
</li>
</ul>
</div>
</div>
</div>
</div>
<div className='Last-footer'>
<p className='copy-content'>© 2024 Bitbox.&nbsp; Made with 🤍 by Bitbox India.&nbsp; All rights reserved.</p>
<p className='copy-content'>© 2024 Bitbox.&nbsp; Made with 🤍 by Bitbox India.&nbsp; All rights reserved.</p>
</div>
</>
)
}


Footer.propTypes = {
showAlert: PropTypes.func,
mode: PropTypes.string,
showAlert: PropTypes.func,
mode: PropTypes.string,
};

export default Footer
6 changes: 6 additions & 0 deletions client/src/component/css/Footer.css
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,11 @@ nav_ul li {
border-radius: 80%;
}

.footer-icons a:hover{
transform: scale(1.2);
color: #0077B5;
}

.Footer h5 {
font-weight: bold;
font-size: 1.5rem;
Expand Down Expand Up @@ -286,6 +291,7 @@ nav_ul li {
gap: 0.8rem;
}


.Footer h5 {
font-size: 1.2rem;
text-align: center;
Expand Down