Skip to content

Commit d8e2bd3

Browse files
committed
Edited Footer
1 parent 53209ff commit d8e2bd3

File tree

2 files changed

+22
-43
lines changed

2 files changed

+22
-43
lines changed

index.html

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -247,15 +247,16 @@ <h2>Projects</h2>
247247
</div> <!-- /preview-section -->
248248
</div> <!-- /main-container -->
249249

250-
<footer>
251-
<div class="footer-left">
252-
<span>&#9679; &nbsp;&nbsp;© <strong>Resume-Generator</strong> - Built with by Rajdeep Paul</span>
253-
</div>
254-
<div class="footer-right">
255-
<a href="https://github.com/rajdeep13-coder" target="_blank"><i class="fab fa-github"></i> GitHub</a>
256-
<a href="https://www.linkedin.com/in/rajdeep-paul-013z/" target="_blank"><i class="fab fa-linkedin"></i> LinkedIn</a>
257-
</div>
258-
</footer>
250+
<footer style="margin-top: 2rem; padding: 1rem 0; text-align: center; font-size: 0.9rem;" class="footer">
251+
<div class="foot">
252+
<p class="footer-text">&copy; 2025. All rights reserved.</p>
253+
<p class="footer-text">
254+
Built with 💙 by
255+
<a href="https://github.com/rajdeep13-coder" target="_blank" class="footer-link">Rajdeep Paul</a>
256+
</p>
257+
</div>
258+
</footer>
259+
259260

260261
<script src="script.js" defer></script>
261262
</body>

style.css

Lines changed: 12 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -306,49 +306,27 @@ main {
306306

307307
/* Responsive Footer */
308308

309-
footer{
310-
background: linear-gradient(to bottom right, #007cf0, #00dfd8);
311-
color:white;
312-
padding:1.5rem 2.5rem;
313-
display:flex;
314-
flex-direction: row;
315-
justify-content:space-between;
316-
align-items: center;
317-
font-size: 1rem;
318-
flex-wrap: wrap;
319-
border: 1.3px solid #ccc;
320-
border-radius: 10px;
321-
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
322-
margin-top: auto;
309+
.footer {
310+
background-color: #f1f1f1; /* light mode background */
311+
color: #333;
323312
}
324313

325-
.footer-right a{
314+
.footer-link {
315+
color: #333;
326316
text-decoration: none;
327-
color:white;
328317
}
329318

330-
.footer-right{
331-
display:flex;
332-
flex-wrap: wrap;
333-
align-items:center;
334-
margin-right:2rem;
335-
gap:1.2rem;
319+
body.dark .footer {
320+
background-color: #1a1a1a; /* darker shade for footer in dark mode */
321+
color: #eee;
322+
border-top: 1px solid #444; /* subtle top border */
323+
box-shadow: 0 -2px 5px rgba(255, 255, 255, 0.05); /* soft top glow effect */
336324
}
337325

338-
339-
.footer-right i:hover{
340-
color:#1a1a1a;
341-
transform:translateY(-2px) scale(1);
326+
body.dark .footer-link {
327+
color: #ffcc00; /* dark yellow for better contrast */
342328
}
343329

344-
.footer-right a:hover{
345-
color:#1a1a1a;
346-
transform:translateY(-2px);
347-
}
348-
349-
.footer-right a, .footer-right i {
350-
transition: all 0.3s ease;
351-
}
352330

353331

354332
@media(max-width:768px){

0 commit comments

Comments
 (0)