Skip to content

Commit

Permalink
Update shows.html
Browse files Browse the repository at this point in the history
  • Loading branch information
MYXXdev committed Aug 6, 2024
1 parent 75de2f7 commit 1e44b8b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions MYXXfm/pages/shows.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
margin: 0;
font-family: Kanit, sans-serif;
color: #fff;
background: linear-gradient(to bottom, #FFD700, #333333 40%, #000000);
background: linear-gradient(to bottom, #FFD700, #FFB600 25%, #333333 75%, #000000); /* Updated gradient */
background-size: cover;
background-attachment: fixed;
background-attachment: fixed; /* Keeps the gradient fixed */
background-repeat: no-repeat;
overflow: hidden;
overflow: auto; /* Allows scrolling */
}

.fade-overlay {
Expand Down Expand Up @@ -55,6 +55,7 @@
align-items: center;
justify-content: center;
padding: 20px;
min-height: 100vh; /* Ensures body takes full viewport height */
}

.schedule {
Expand Down Expand Up @@ -231,7 +232,6 @@
overlay.style.opacity = 0;
setTimeout(() => {
overlay.style.display = 'none';
document.body.style.overflow = 'auto';
}, 500);
}, 2000);
</script>
Expand Down

0 comments on commit 1e44b8b

Please sign in to comment.