4,554
edits
No edit summary |
No edit summary Tag: Reverted |
||
Line 45: | Line 45: | ||
margin: 0 auto; | margin: 0 auto; | ||
} | } | ||
.fade-out { | /* Style for the overlay element */ | ||
#overlay { | |||
position: fixed; | |||
top: 0; | |||
left: 0; | |||
width: 100%; | |||
height: 100%; | |||
background-color: rgba(255, 255, 255, 0); /* Transparent initially */ | |||
z-index: 1000; /* Ensure it's above other elements */ | |||
transition: background-color 0.5s ease; /* Smooth transition effect */ | |||
} | |||
/* Add the fade-out class to change the background color and create the fade-out effect */ | |||
#overlay.fade-out { | |||
background-color: rgba(255, 255, 255, 0.7); /* White background with opacity */ | background-color: rgba(255, 255, 255, 0.7); /* White background with opacity */ | ||
} | } | ||
.card { | .card { |