ModalWindow.css 456 B

1234567891011121314151617181920212223242526272829303132333435
  1. .modalWindowOverlay {
  2. z-index: 100;
  3. width: 100%;
  4. height: 100%;
  5. background-color: rgba(0, 0, 0, 0.75);
  6. position: fixed;
  7. top: 0;
  8. left: 0;
  9. }
  10. .modalWindow {
  11. max-width: 90vw;
  12. max-height: 90vh;
  13. z-index: 101;
  14. background-color: lightgrey;
  15. border-radius: 15px;
  16. position: fixed;
  17. top: 50%;
  18. left: 50%;
  19. margin-right: -50%;
  20. transform: translate(-50%, -50%);
  21. font-family: monospace;
  22. text-align: center;
  23. padding: 30px 40px;
  24. overflow: auto;
  25. }