Skip to content

Commit

Permalink
index.html: z-index
Browse files Browse the repository at this point in the history
  • Loading branch information
Clarosabel2 committed May 15, 2024
1 parent 377f37f commit c449639
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions script.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ btnsInfo.forEach((btn) => {
ctnInfo.style.visibility = "visible";
main.classList.add("pointer-e");
document.body.style.overflow="hidden";

});
});

Expand Down
9 changes: 7 additions & 2 deletions styles/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ header {
color: white;
align-items: center;
justify-content: space-between;
z-index: 1;
z-index: 100;
}

header .container-logo {
Expand Down Expand Up @@ -112,7 +112,8 @@ main .container-filter{
gap: 2rem;
display: flex;
justify-content: center;
box-shadow: 0px 5px 150px #fff;
box-shadow: 0px 30px 100px #fff;
z-index: 90;
}
main .container-sucu {

Expand All @@ -135,6 +136,7 @@ main .container-sucu #sucu-droplist {
cursor: pointer;
background-color: #3b3b3b;
color: white;
text-align: center;
}
main .grid-container {

Expand All @@ -159,10 +161,12 @@ main .grid-container .movie-card {
/* Centrar el contenido */
transition: transform 0.8s;
cursor: pointer;
z-index: 70;
}
main .grid-container .movie-card:hover {
transform: scale(1.09);
background-color: #661d1d;
z-index: 80;
}
main .grid-container .movie-card:active {
background-color: #1f0c0c;
Expand Down Expand Up @@ -200,6 +204,7 @@ main .container-info {
overflow: hidden;
display: flex;
backdrop-filter: blur(5px);
z-index: 95;
}
@keyframes scale-up-center {
0% {
Expand Down

0 comments on commit c449639

Please sign in to comment.