Advertisement
lennonthemes

popup 2

Jun 21st, 2013
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. .popup_block{
  2. display: none; /*--hidden by default--*/
  3. background: #fff;
  4. background-image: url(URL OF BACKGROUND PICTURE);
  5. background-attachment: fixed;
  6. background-size: contain;
  7. background-position: center;
  8. padding: 10px;
  9. text-style: bold;
  10. border: 4px solid #9E7BFF; /*--change your border here--*/
  11. float: left;
  12. font-size: 10px;
  13. font-family: Arial;
  14. line-height:12px;
  15. position: fixed;
  16. top: 50%; left: 50%;
  17. z-index: 99999;
  18. /*--CSS3 Box Shadows--*/ /*--change your pop up shadow here--*/
  19. -webkit-box-shadow: 0px 0px 20px #000;
  20. -moz-box-shadow: 0px 0px 10px #000;
  21. box-shadow: 0px 0px 10px #000;
  22. /*--CSS3 Rounded Corners--*/ /*--change your corners--*/
  23. -webkit-border-radius: 5px;
  24. -moz-border-radius: 5px;
  25. border-radius: 5px;
  26. }
  27. img.btn_close {
  28. float: right;
  29. margin: -5px -5px 0 0;
  30. }
  31. /*--Making IE6 Understand Fixed Positioning--*/
  32. *html #fade {
  33. position: absolute;
  34. }
  35. *html .popup_block {
  36. position: absolute;
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement