Advertisement
str-wrs

Pop-up box: 2

Dec 27th, 2012
46,031
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. .popup_block{
  2. display:none;
  3. background:#fff;
  4. padding:20px;
  5. border:1px solid #eee; /* if you want a solid white pop-up, delete this */
  6. float:left;
  7. position:fixed;
  8. top:50%;left:50%;
  9. z-index: 99999;
  10. -webkit-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  11. -moz-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  12. box-shadow: 0px 0px 20px #000; /* delete for solid white */
  13. }
  14.  
  15. *html #fade {position: absolute;}
  16. *html .popup_block {position: absolute;}
  17. #fade {
  18. display:none;
  19. position:fixed;
  20. left:0px;
  21. top:0px;
  22. width:100%;
  23. height:100%;
  24. z-index:9999;
  25. background:#000; /* change to #fff for solid white */
  26. opacity:0.5; /* change to opacity:1; */
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement