1
0

Overlay.css 394 B

123456
  1. #Overlay {
  2. position: absolute; z-index: 9999; width: 100%; background-color: rgba(255, 255, 255, 0);
  3. height: 100%; transition: background-color 0.6s; pointer-events: none; cursor: zoom-in;
  4. }
  5. #Overlay.visible { background-color: rgba(255, 255, 255, 0.9); pointer-events: all; }
  6. #Overlay .img { position: absolute; background-size: contain; transition: all 0.3s; background-repeat: no-repeat; }