Skip to content

Commit

Permalink
Merge branch 'main' into paging
Browse files Browse the repository at this point in the history
  • Loading branch information
Gauravtb2253 authored Oct 30, 2024
2 parents 5ffac72 + 6549578 commit 909b5ab
Show file tree
Hide file tree
Showing 11 changed files with 1,107 additions and 115 deletions.
12 changes: 7 additions & 5 deletions assets/html/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -1642,15 +1642,17 @@ <h1>Privacy Notice</h1>
/* margin-right: 0px; */
}
/* Close button */
.close {
.closes {
color: #073725;
float: right;
font-size: 28px;
font-weight: bold;
cursor: pointer;
line-height: 1;
opacity: .2;
}
.close:hover,
.close:focus {
.closes:hover,
.closes:focus {
color: black;
text-decoration: none;
}
Expand Down Expand Up @@ -1708,7 +1710,7 @@ <h1>Privacy Notice</h1>
// Get the button that opens the popup
var btn = document.getElementById('translateButton');
// Get the <span> element that closes the popup
var span = document.getElementsByClassName('close')[0];
var span = document.getElementsByClassName('closes')[0];
// When the user clicks the button, open the popup
btn.onclick = function() {
popup.style.display = 'block';
Expand All @@ -1728,7 +1730,7 @@ <h1>Privacy Notice</h1>
<!-- Popup for Google Translate -->
<div id="translatePopup" class="popup">
<div class="popup-content">
<span class="close">&times;</span>
<span class="closes">&times;</span>
<div id="google_translate_element"></div>
</div>
</div>
Expand Down
2 changes: 2 additions & 0 deletions assets/html/author.html
Original file line number Diff line number Diff line change
Expand Up @@ -1723,6 +1723,7 @@ <h2>Quick Links</h2>
</div>
<style>
/* Fixed translate button */

#translateButton {
position: fixed;
/* bottom: 20px; */
Expand Down Expand Up @@ -1889,6 +1890,7 @@ <h2>Quick Links</h2>
font-weight: bold;
color: #333;
}

</style>
<script>
document.addEventListener('DOMContentLoaded', function () {
Expand Down
2 changes: 2 additions & 0 deletions assets/html/event.html
Original file line number Diff line number Diff line change
Expand Up @@ -528,6 +528,8 @@ <h3 id="monthAndYear"></h3>
font-size: 28px;
font-weight: bold;
cursor: pointer;
line-height: 1;
opacity: .2;
}
.close:hover,
.close:focus {
Expand Down
2 changes: 2 additions & 0 deletions assets/html/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -1429,6 +1429,8 @@ <h2>Quick Links</h2>
font-size: 28px;
font-weight: bold;
cursor: pointer;
line-height: 1;
opacity: .2;
}
.close:hover,
.close:focus {
Expand Down
Loading

0 comments on commit 909b5ab

Please sign in to comment.