Advertisement
topherbones

CSS_popup_div

Apr 29th, 2018
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  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: 25%;
  18. left: 25%;
  19. width: 50%;
  20. height: 50%;
  21. padding: 16px;
  22. border: 16px solid orange;
  23. background-color: white;
  24. z-index: 1002;
  25. overflow: auto;
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement