egg.css 622 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #egg_container {
  2. position: fixed;
  3. display: none;
  4. width: 100%;
  5. height: 100%;
  6. top: 0;
  7. left: 0;
  8. right: 0;
  9. bottom: 0;
  10. background-color: rgba(0,0,0,0.5);
  11. z-index: 2;
  12. }
  13. #egg_inner {
  14. width: 50vw;
  15. max-width: 620px;
  16. max-height: 380px;
  17. padding: 50px;
  18. position: absolute;
  19. top: 50%;
  20. left: 50%;
  21. background-color: white;
  22. border-radius: 10px;
  23. transform: translate(-50%,-50%);
  24. -ms-transform: translate(-50%,-50%);
  25. }
  26. #egg_content {
  27. text-align: center;
  28. }
  29. #egg_close {
  30. text-align: right;
  31. margin: 0;
  32. padding: 0;
  33. padding-bottom: 10px;
  34. }