Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions Author/Author-page.html
Original file line number Diff line number Diff line change
Expand Up @@ -100,4 +100,27 @@ <h3 class="bg-primary"><span class="bg-primary-1">Authors</span></h3>
</div>
<!--Authors close-->
</body>
<!-- Footer Section -->
<footer class="footer">
<p>© 2025 Authors Website. All Rights Reserved.</p>
<div class="social-links">

<a href="https://x.com" target="_blank" title="X">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/X_logo_2023.png/600px-X_logo_2023.png" alt="X" width="30">
</a>

<a href="https://facebook.com" target="_blank" title="Facebook">
<img src="https://cdn-icons-png.flaticon.com/512/733/733547.png" alt="Facebook" width="30">
</a>

<a href="https://linkedin.com" target="_blank" title="LinkedIn">
<img src="https://cdn-icons-png.flaticon.com/512/733/733561.png" alt="LinkedIn" width="30">
</a>
</div>
</footer>





</html>
28 changes: 28 additions & 0 deletions Author/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -448,4 +448,32 @@ a{
@keyframes mover {
to { transform: translateY(-40px); }
}
/* Footer Styling */
.footer {
background-color: #111; /* dark background */
color: #fff;
text-align: center;
padding: 20px;
margin-top: 40px;
font-size: 14px;
}

.footer .social-icons {
margin-top: 10px;
}

.footer .social-icons a {
margin: 0 10px;
display: inline-block;
}

.footer .social-icons img {
width: 24px;
height: 24px;
transition: transform 0.3s ease;
}

.footer .social-icons img:hover {
transform: scale(1.2);
}

6 changes: 5 additions & 1 deletion Bitcoin-website/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,11 @@
}

.menu ul li:hover {
color: #b2b1b1;
background: linear-gradient(90deg, #19d7f8, #fd00da);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: bold;
transition: all 0.3s ease;
}

.active {
Expand Down
22 changes: 21 additions & 1 deletion Login/Signin.css
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ img.apple {
p
}

.text-field.lock{
.text-field.lock {
width:15px;
height:20px;
}
Expand Down Expand Up @@ -344,4 +344,24 @@ img.apple {
flex-direction: column-reverse;
padding: 48px 48px 48px 32px;
}


/* .my-form__button {
background: linear-gradient(90deg, #19d7f8, #fd00da);
border: none;
padding: 12px 20px;
border-radius: 25px;
color: white;
font-weight: bold;
cursor: pointer;
transition: all 0.3s ease;
}


.my-form__button:hover {
transform: scale(1.05);
box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
opacity: 0.9;
} */

}