Advertisement
hazzstop

Pop up askbox1

Jun 2nd, 2013
1,974
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. #fade {
  2. display: none;
  3. background: #000000;
  4. position: fixed; left: 0; top: 0;
  5. width: 100%; height: 100%;
  6. opacity: .6;
  7. z-index: 9999;
  8. }
  9.  
  10. .popup_block{
  11. display: none;
  12. background: #ffffff;
  13. padding: 20px;
  14. float: left;
  15. position: fixed;
  16. top: 50%; left: 50%;
  17. z-index: 99999;
  18. }
  19.  
  20. img.btn_close {
  21. float: right;
  22. margin: -50px -50px 0 0;
  23. padding:6px;
  24. background:#ffffff;
  25. -webkit-border-radius: 100px;
  26. -moz-border-radius: 100px;
  27. border-radius: 100px;
  28. }
  29.  
  30. *html #fade {
  31. position: absolute;
  32. }
  33.  
  34. *html .popup_block {
  35. position: absolute;
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement