mycss.css 607 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .black_overlay{
  2. display: none;
  3. position: absolute;
  4. top: 0%;
  5. left: 0%;
  6. width: 100%;
  7. height: 100%;
  8. background-color: black;
  9. z-index:1001;
  10. -moz-opacity: 0.8;
  11. opacity:.80;
  12. filter: alpha(opacity=80);
  13. }
  14. .white_content {
  15. /*display: none;*/
  16. position: absolute;
  17. top: 10%;
  18. left: 10%;
  19. width: 75%;
  20. height: 80%;
  21. border: 16px solid lightblue;
  22. background-color: white;
  23. z-index:1002;
  24. overflow: auto;
  25. }
  26. .white_content_small {
  27. display: none;
  28. position: absolute;
  29. top: 20%;
  30. left: 30%;
  31. width: 40%;
  32. height: 50%;
  33. border: 16px solid lightblue;
  34. background-color: white;
  35. z-index:1002;
  36. overflow: auto;
  37. }