mask.css
349 Bytes
.m-mask {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
opacity: 1;
background: rgba(0, 0, 0, 0.5);
z-index: 10;
overflow: hidden;
-webkit-transition: opacity 0.05s ease-in-out;
-moz-transition: opacity 0.05s ease-in-out;
-o-transition: opacity 0.05s ease-in-out;
transition: opacity 0.05s ease-in-out;
}