reginap94

pop up ask part #2

Jan 25th, 2013
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. #fade { /*--Transparent background layer--*/
  2. display: none; /*--hidden by default--*/
  3. background: #000;
  4. position: fixed; left: 0; top: 0;
  5. width: 100%; height: 100%;
  6. opacity: .80;
  7. z-index: 9999;
  8. }
  9. .popup_block{
  10. display: none; /*--hidden by default--*/
  11. background: #fcfbf8;
  12. padding: 10px;
  13. border: 5px solid #e8e8e8;
  14. float: left;
  15. font-size: 10;
  16. position: fixed;
  17. top: 50%; left: 50%;
  18. z-index: 99999;
  19. /*--CSS3 Box Shadows--*/
  20. -webkit-box-shadow: 0px 0px 20px #000;
  21. -moz-box-shadow: 0px 0px 20px #000;
  22. box-shadow: 0px 0px 20px #000;
  23. /*--CSS3 Rounded Corners--*/
  24. -webkit-border-radius: 5px;
  25. -moz-border-radius: 5px;
  26. border-radius: 5px;
  27. }
  28. img.btn_close {
  29. float: right;
  30. margin: -20 -20px 0 0;
  31. }
  32. /*--Making IE6 Understand Fixed Positioning--*/
  33. *html #fade {
  34. position: absolute;
  35. }
  36. *html .popup_block {
  37. position: absolute;
  38. }
Advertisement
Add Comment
Please, Sign In to add comment