Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated Footer Section #392

Merged
merged 10 commits into from
Jul 10, 2024
Merged
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
5 changes: 5 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@
<label for="dark-mode-toggle">Dark Mode</label>
</div>
</div>
<footer class="footer">
<div class="copyright">
<p>&copy; 2024 Random-Disco-Light-Simulator. All Rights Deserved</p>
</div>
</footer>
</body>

</html>
20 changes: 20 additions & 0 deletions css/404.css
Original file line number Diff line number Diff line change
Expand Up @@ -235,3 +235,23 @@ body.dark-mode .container {
body.dark-mode .star {
background: rgba(255, 255, 255, 0.8); /* Adjust star color for dark mode */
}
footer {
background-color: #1d1d1d; /* dark background */
padding: 0px;
text-align: center;
width: 100%;
bottom: 0;
z-index: 1000; /* ensure footer is on top of other elements */
}

.copyright {
font-size: 14px;
color: #fff; /* white text */
margin: 0;
}

.copyright p {
display: inline-block;
margin: 2;
color: #ffffff;
}
22 changes: 21 additions & 1 deletion css/about.css
Original file line number Diff line number Diff line change
Expand Up @@ -161,4 +161,24 @@ strong{
body{
padding-top: 200px;
}
}
}
footer {
background-color: #1d1d1d; /* dark background */
padding: 0px;
text-align: center;
width: 100%;
bottom: 0;
z-index: 1000; /* ensure footer is on top of other elements */
}

.copyright {
font-size: 14px;
color: #fff; /* white text */
margin: 0;
}

.copyright p {
display: inline-block;
margin: 2;
color: #ffffff;
}
22 changes: 21 additions & 1 deletion css/features.css
Original file line number Diff line number Diff line change
Expand Up @@ -149,4 +149,24 @@ strong{
#image7 {
justify-content: center;
align-items: center;
}
}
footer {
background-color: #1d1d1d; /* dark background */
padding: 0px;
text-align: center;
width: 100%;
bottom: 0;
z-index: 1000; /* ensure footer is on top of other elements */
}

.copyright {
font-size: 14px;
color: #fff; /* white text */
margin: 0;
}

.copyright p {
display: inline-block;
margin: 2;
color: #ffffff;
}
22 changes: 21 additions & 1 deletion css/feedback.css
Original file line number Diff line number Diff line change
Expand Up @@ -150,4 +150,24 @@ strong{
.star-rating label:hover,
.star-rating label:hover ~ label {
color: #f5b301;
}
}
footer {
background-color: #1d1d1d; /* dark background */
padding: 0px;
text-align: center;
width: 100%;
bottom: 0;
z-index: 1000; /* ensure footer is on top of other elements */
}

.copyright {
font-size: 14px;
color: #fff; /* white text */
margin: 0;
}

.copyright p {
display: inline-block;
margin: 2;
color: #ffffff;
}
20 changes: 20 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2517,3 +2517,23 @@ button:active {
margin: auto;
text-align: center;
}
footer {
background-color: #1d1d1d; /* dark background */
padding: 0px;
text-align: center;
width: 100%;
bottom: 0;
z-index: 1000; /* ensure footer is on top of other elements */
}

.copyright {
font-size: 14px;
color: #fff; /* white text */
margin: 0;
}

.copyright p {
display: inline-block;
margin: 2;
color: #ffffff;
}
5 changes: 5 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -458,6 +458,11 @@ <h2>Account Not Available</h2>
<p>Thank you for your continued support! </p>
</div>
</div>
<footer class="footer">
<div class="copyright">
<p>&copy; 2024 Random-Disco-Light-Simulator. All Rights Deserved</p>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="js/background.js"></script>
<script src="js/social.js"></script>
Expand Down
5 changes: 5 additions & 0 deletions pages/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -146,5 +146,10 @@ <h2>Account Not Available</h2>
<p>Thank you for your continued support! </p>
</div>
</div>
<footer class="footer">
<div class="copyright">
<p>&copy; 2024 Random-Disco-Light-Simulator. All Rights Deserved</p>
</div>
</footer>
</body>
</html>
5 changes: 5 additions & 0 deletions pages/features.html
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,11 @@ <h2>Account Not Available</h2>
<p>Thank you for your continued support! </p>
</div>
</div>
<footer class="footer">
<div class="copyright">
<p>&copy; 2024 Random-Disco-Light-Simulator. All Rights Deserved</p>
</div>
</footer>
</body>

</html>
5 changes: 5 additions & 0 deletions pages/feedback.html
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,11 @@ <h2>Account Not Available</h2>
<p>Thank you for your continued support! </p>
</div>
</div>
<footer class="footer">
<div class="copyright">
<p>&copy; 2024 Random-Disco-Light-Simulator. All Rights Deserved</p>
</div>
</footer>
</body>

</html>
Loading