Skip to content

Commit

Permalink
Update landpage.css
Browse files Browse the repository at this point in the history
  • Loading branch information
adi-iiitn authored Nov 1, 2024
1 parent 6ed1759 commit cb4445d
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions landpage.css
Original file line number Diff line number Diff line change
Expand Up @@ -411,4 +411,60 @@ padding: 0;
z-index: 9998;
}
*/






.popup {
display: none; /* Hidden by default */
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
justify-content: center;
align-items: center;
}

.popup-content {
background-color: rgb(238, 106, 106);
padding: 20px;
border-radius: 5px;
position: relative;
width: 300px;
}

.close {
position: absolute;
top: 10px;
right: 20px;
cursor: pointer;
font-size: 24px;
}

.image-slider {
display: flex;
overflow: hidden;
width: 100%;
height: 150px;
position: relative;
}

.image-slider img {
width: 100%;
opacity: 0;
transition: opacity 1s ease-in-out;
}

.image-slider img.active {
opacity: 1;
}






0 comments on commit cb4445d

Please sign in to comment.