removing useless css

master
cocaillot 4 months ago
parent 4caee9d9b9
commit 358cffa7ed

@ -67,7 +67,7 @@
<!-- External JS -->
<script src="form-handler.js"></script>
<footer class="footer_index">
<footer>
<p>© 2025 Corentin Caillot. Tous droits réservés.</p>
<p>📧 Contactez-moi : <a href="mailto:contact@corentincaillot.com">contact@corentincaillot.com</a></p>
<p><a href="https://github.com/">GitHub</a> | <a href="https://linkedin.com/">LinkedIn</a></p>

@ -150,7 +150,7 @@
</section>
</div>
</header>
<footer class="footer_index">
<footer>
<p>© 2025 Corentin Caillot. Tous droits réservés.</p>
<p>📧 Contactez-moi : <a href="mailto:contact@corentincaillot.com">contact@corentincaillot.com</a></p>
<p><a href="https://github.com/">GitHub</a> | <a href="https://linkedin.com/">LinkedIn</a></p>

@ -1107,51 +1107,10 @@ body.fade-out {
}
.site-footer {
background: linear-gradient(135deg, #1e1e1e, #292929);
color: #fff;
padding: 20px 0;
text-align: center;
font-size: 1em;
position: relative;
width: 100%;
bottom: 0;
}
.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
max-width: 1200px;
margin: auto;
padding: 10px 20px;
}
.footer-left, .footer-center, .footer-right {
flex: 1;
text-align: center;
}
.footer-left p, .footer-center p {
margin: 5px 0;
}
.footer-center a {
color: #3498db;
text-decoration: none;
font-weight: bold;
}
.footer-center a:hover {
text-decoration: underline;
}
.footer-right {
display: flex;
justify-content: center;
gap: 15px;
}
.social-icon img {
width: 32px;
@ -1164,40 +1123,22 @@ body.fade-out {
opacity: 0.8;
}
/* Responsive */
@media (max-width: 768px) {
.footer-content {
flex-direction: column;
text-align: center;
}
.footer-left, .footer-center, .footer-right {
margin-bottom: 10px;
}
}
/* ✅ Light Mode Support */
body.light-mode footer {
background: #f1f1f1;
color: #333;
border-top: 1px solid #dcdcdc;
}
footer {
width: 100% !important;
text-align: center !important;
padding: 15px ! important;
background: #252323 ! important ; /* Default dark mode */
color: #fff ! important;
position: relative ! important;
bottom: 0 ! important;
width: 100% ;
text-align: center ;
padding: 15px ;
background: #252323 ; /* Default dark mode */
color: #fff ;
position: relative ;
bottom: 0;
}

Loading…
Cancel
Save