Skip to content

Commit ec14fb8

Browse files
committed
added footer
1 parent 3a93ef1 commit ec14fb8

File tree

3 files changed

+72
-1
lines changed

3 files changed

+72
-1
lines changed

Author/Author-page.html

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,27 @@ <h3 class="bg-primary"><span class="bg-primary-1">Authors</span></h3>
100100
</div>
101101
<!--Authors close-->
102102
</body>
103+
<!-- Footer Section -->
104+
<footer class="footer">
105+
<p>© 2025 Authors Website. All Rights Reserved.</p>
106+
<div class="social-links">
107+
108+
<a href="https://x.com" target="_blank" title="X">
109+
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/X_logo_2023.png/600px-X_logo_2023.png" alt="X" width="30">
110+
</a>
111+
112+
<a href="https://facebook.com" target="_blank" title="Facebook">
113+
<img src="https://cdn-icons-png.flaticon.com/512/733/733547.png" alt="Facebook" width="30">
114+
</a>
115+
116+
<a href="https://linkedin.com" target="_blank" title="LinkedIn">
117+
<img src="https://cdn-icons-png.flaticon.com/512/733/733561.png" alt="LinkedIn" width="30">
118+
</a>
119+
</div>
120+
</footer>
121+
122+
123+
124+
125+
103126
</html>

Author/styles.css

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -448,4 +448,32 @@ a{
448448
@keyframes mover {
449449
to { transform: translateY(-40px); }
450450
}
451+
/* Footer Styling */
452+
.footer {
453+
background-color: #111; /* dark background */
454+
color: #fff;
455+
text-align: center;
456+
padding: 20px;
457+
margin-top: 40px;
458+
font-size: 14px;
459+
}
460+
461+
.footer .social-icons {
462+
margin-top: 10px;
463+
}
464+
465+
.footer .social-icons a {
466+
margin: 0 10px;
467+
display: inline-block;
468+
}
469+
470+
.footer .social-icons img {
471+
width: 24px;
472+
height: 24px;
473+
transition: transform 0.3s ease;
474+
}
475+
476+
.footer .social-icons img:hover {
477+
transform: scale(1.2);
478+
}
451479

Login/Signin.css

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ img.apple {
106106
p
107107
}
108108

109-
.text-field.lock{
109+
.text-field.lock {
110110
width:15px;
111111
height:20px;
112112
}
@@ -344,4 +344,24 @@ img.apple {
344344
flex-direction: column-reverse;
345345
padding: 48px 48px 48px 32px;
346346
}
347+
348+
349+
/* .my-form__button {
350+
background: linear-gradient(90deg, #19d7f8, #fd00da);
351+
border: none;
352+
padding: 12px 20px;
353+
border-radius: 25px;
354+
color: white;
355+
font-weight: bold;
356+
cursor: pointer;
357+
transition: all 0.3s ease;
358+
}
359+
360+
361+
.my-form__button:hover {
362+
transform: scale(1.05);
363+
box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
364+
opacity: 0.9;
365+
} */
366+
347367
}

0 commit comments

Comments
 (0)