2
0

iframe_modal_win.css 680 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. .modal_win_bg {
  2. background-color: rgba(0, 0, 0, 0.8);
  3. position: fixed;
  4. top: 0;
  5. left: 0;
  6. width: 100%;
  7. height: 100%;
  8. display: none;
  9. z-index: 1001;
  10. }
  11. .iframe_container {
  12. display: none;
  13. z-index: 1002;
  14. background-color: var(--bg-color);
  15. border-radius: 20px;
  16. width: 75%;
  17. height: 80%;
  18. margin: auto;
  19. position: absolute;
  20. top: 0;
  21. left: 0;
  22. right: 0;
  23. bottom: 0;
  24. }
  25. .iframe_container iframe {
  26. width: 100%;
  27. height: 100%;
  28. border: 0;
  29. }
  30. .model_win_container {
  31. display: none;
  32. z-index: 1002;
  33. background-color: var(--bg-color);
  34. border-radius: 20px;
  35. width: 95%;
  36. height: 90%;
  37. margin: auto;
  38. position: fixed;
  39. top: 0;
  40. left: 0;
  41. right: 0;
  42. bottom: 0;
  43. overflow-y: scroll;
  44. }