Skip to content

Commit

Permalink
more fixes bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Capyyyyy committed Dec 12, 2024
1 parent efdc2af commit 17baf56
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 6 deletions.
46 changes: 40 additions & 6 deletions cssnew.css
Original file line number Diff line number Diff line change
Expand Up @@ -141,16 +141,36 @@ table {
max-width: 700px;
opacity: 1;
transition: opacity 0.5s;
}
table-layout: fixed;
}


table.fade-out {
table.fade-out {
opacity: 0.7;
filter: blur(5px);
pointer-events: none;
}

position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
margin: 60px auto 0 300px;
font-size: 14px;
text-align: left;
background-color: transparent;
border-spacing: 0 25px;
padding-left: 20px;
padding-right: 0;
max-width: 700px;
opacity: 1;
transition: opacity 0.5s;
table-layout: fixed;

}

table.fade-out tbody tr{
overflow: hidden;
}



Expand Down Expand Up @@ -730,6 +750,12 @@ button:active,
margin: 30px auto 0;
}


header nav ul li a{
margin: auto;
font-size: 18px !important;
}

header {
position: fixed;
top: 0;
Expand Down Expand Up @@ -816,7 +842,7 @@ button:active,
}

#nav.show li {
padding: 15px;
padding: 10px;
}

#nav ul {
Expand Down Expand Up @@ -861,7 +887,7 @@ button:active,
}

#nav.hide li {
padding: 15px;
padding: 10px;
opacity: 0; /* Fade out individual items */
animation: navItemSlideOut 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
position: relative; /* Prevent unexpected placement issues */
Expand Down Expand Up @@ -901,3 +927,11 @@ button:active,




#nav li a {
white-space: nowrap;
}

#nav li a {
padding-left: 0;
}
1 change: 1 addition & 0 deletions script.js
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,7 @@ function hideFullInfo() {
document.getElementById('levelTable').style.display = 'block';
document.getElementById('footer').style.display = 'block';
fullInfoContainer.classList.remove('show-full-info');
renderTable();
}


Expand Down

0 comments on commit 17baf56

Please sign in to comment.