MediaWiki:Common.css: Difference between revisions

Jump to navigation Jump to search
no edit summary
No edit summary
No edit summary
Line 45: Line 45:
   margin: 0 auto;
   margin: 0 auto;
}
}
#overlay {
#list.fade-out {
    display: none;
     background-color: rgba(255, 255, 255, 0.5); /* Adjust the color and opacity as needed */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     background-color: rgba(255, 255, 255, 0.9); /* White background with opacity */
    z-index: 1000; /* Adjust the z-index as needed */
}
 
#overlay.fade-out {
    animation: fadeOut 0.5s ease-in-out; /* Adjust the duration as needed */
}
 
@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
}


Navigation menu