Skip to content

Commit

Permalink
Merge pull request #17 from deepbeatz/test
Browse files Browse the repository at this point in the history
footer css changes made
  • Loading branch information
AyishikD authored Jan 9, 2024
2 parents 92eaada + b72b549 commit 40d73ae
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 12 deletions.
13 changes: 13 additions & 0 deletions src/components/Footer.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
.myedit-footerlinks{
color: rgb(169, 169, 169);
transition: all 0.2s ease-in-out;
}

.myedit-footerlinks:hover{
color: white;
transform: translateX(10px);
}

.myedit-footlink-headings{
font-size: 20px;
}
24 changes: 12 additions & 12 deletions src/components/Footer.js
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
// Footer.js

import React from 'react';
//import './Footer.css'; // Import the CSS file
import './Footer.css';

const Footer = () => {
return (
<footer>
<div style={styles.footerPanel2} className="footer-panel2">
<div className="navFooterlinkCol">
<div style={styles.boldFooterLinkCol} className="footerlinkcol">Company</div>
<div style={styles.boldFooterLinkCol} className="footerlinkcol myedit-footlink-headings">Company</div>
<ul>
<li><a href="##">About</a></li>
<li><a href="##">Careers</a></li>
<li className="myedit-footerlinks"><a href="##">About</a></li>
<li className="myedit-footerlinks"><a href="##">Careers</a></li>
</ul>
</div>


<div className="navFooterlinkCol">
<div style={styles.boldFooterLinkCol} className="footerlinkcol">View Website in</div>
<div style={styles.boldFooterLinkCol} className="footerlinkcol myedit-footlink-headings">View Website in</div>
<ul>
<li><a href="##">English</a></li>
<li className="myedit-footerlinks"><a href="##">English</a></li>
</ul>
</div>
<div className="navFooterlinkCol">
<div style={styles.boldFooterLinkCol} className="footerlinkcol">Need Help</div>
<div style={styles.boldFooterLinkCol} className="footerlinkcol myedit-footlink-headings">Need Help</div>
<ul>
<li><a href="##">Visit Help Center</a></li>
<li><a href="##">Share Feedback</a></li>
<li className="myedit-footerlinks"><a href="##">Visit Help Center</a></li>
<li className="myedit-footerlinks"><a href="##">Share Feedback</a></li>
</ul>
</div>
<div className="navFooterlinkCol">
<div style={styles.boldFooterLinkCol} className="footerlinkcol">Contact Us</div>
<div style={styles.boldFooterLinkCol} className="footerlinkcol myedit-footlink-headings">Contact Us</div>
<ul>
<li><a href="##">Facebook</a></li>
<li><a href="##">Twiter</a></li>
<li className="myedit-footerlinks"><a href="##">Facebook</a></li>
<li className="myedit-footerlinks"><a href="##">Twiter</a></li>
</ul>
</div>

Expand Down

0 comments on commit 40d73ae

Please sign in to comment.