Skip to content

Commit

Permalink
Merge pull request #62 from anushree0809/homepage-footer
Browse files Browse the repository at this point in the history
Added footer to home page
  • Loading branch information
AdityaSinha2305 authored Oct 16, 2024
2 parents bf7b7ed + 74cf68c commit d12c3cd
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
3 changes: 3 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@
</div>
</div>
</div>
<footer>
<p>&copy; 2024 ForkTheCaptcha. All rights reserved.</p>
</footer>



Expand Down
22 changes: 19 additions & 3 deletions styles/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ body
object-fit: cover; /* Ensures the image covers the entire viewport */
z-index: -1; /* Places the image behind all other content */
}


.captcha-container
{
/* min-width: 50%; */
Expand Down Expand Up @@ -275,9 +273,23 @@ body

/* Padding for body to avoid overlap with fixed navbar */
body {
padding-top: 60px; /* Adjust based on navbar height */
padding-top: 100px; /* Adjust based on navbar height */
padding-bottom:100px;
}
footer {
text-align: center;
padding: 25px 20px;
background-color: #333;
color: white;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
box-sizing: border-box;
margin-top: 100px;
}


/* Responsive Behaviour */
@media (max-width: 768px) {
.navbar {
Expand All @@ -303,6 +315,10 @@ body {
.menu-icon {
display: block; /* Show menu icon for smaller screens */
}

footer {
font-size: 14px;
}
}

@media (max-width: 480px) {
Expand Down

0 comments on commit d12c3cd

Please sign in to comment.