Skip to content

Commit

Permalink
changes in the footer
Browse files Browse the repository at this point in the history
  • Loading branch information
Ajita369 committed Jun 5, 2024
1 parent 4106e34 commit e16edf6
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 9 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -910,7 +910,7 @@ <h4 class="footer__subtitle">Support</h4>
<p><a href="./faq.html" class="footer__link">FAQs</a></p>
<p><a href="./tnc.html" class="footer__link">Terms & Conditions</a></p>
<p><a href="./privacy.html" class="footer__link">Privacy Policy</a></p>
<p><a href="#cnt-form" class="footer__link">Contact</a></p>
<p><a href="#cnt-form" class="footer__link">Contact Us</a></p>
</div>
</div>

Expand Down
27 changes: 19 additions & 8 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -1201,26 +1201,28 @@ body.dark-theme #emailInput {

.footer__container {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: flex-start;

/* /grid-template-columns: repeat(3, 1fr);/ gap: 24px; */

grid-template-columns: repeat(3, 1fr);
gap: 24px;
color: var(--secondary-color);
}

.footer__col {
flex: 1;
display: flex ;
max-width: 200px;
margin: 10px;
text-align: center;
flex-direction: column;
}

.footer__col:nth-child(2) {
/*.footer__col:nth-child(2) {
margin-top: 10px;
}
*/

.footer__col h3 {
font-size: 1.5rem;
Expand All @@ -1232,13 +1234,22 @@ body.dark-theme #emailInput {
color: var(--primary-color);
}

.footer__col p {
/*.footer__col p {
font-size: 0.8rem;
cursor: pointer;
transition: 0.3s;
}
*/

.footer__link{
font-size: 1rem;
cursor: pointer;
transition: 0.3s;
color: white;
}

.footer__col p:hover {

.footer__link:hover {
color: #ff0000;
font-size: 13px;
overflow: hidden;
Expand All @@ -1249,9 +1260,9 @@ body.dark-theme #emailInput {
}

.footer__col h4 {
font-size: 1rem;
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 10px;
margin-bottom: 15px;
}

.footer__bar {
Expand Down

0 comments on commit e16edf6

Please sign in to comment.