bluerosemarcella

pop up navigation - part 2

Oct 21st, 2013
2,486
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 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.  
  11. display: none; /*--hidden by default--*/
  12. background: #fff;
  13. height:550px;
  14.  
  15. padding: 5px;
  16. border: 3px solid #ddd;
  17. text-align:center;
  18. float: left;
  19. font-size: 12px;
  20. position: fixed;
  21. top: 55%; left: 55%;
  22. z-index: 99999;
  23. /*--CSS3 Box Shadows--*/
  24. -webkit-box-shadow: 0px 0px 20px #000;
  25. -moz-box-shadow: 0px 0px 20px #000;
  26. box-shadow: 0px 0px 20px #000;
  27. /*--CSS3 Rounded Corners--*/
  28. -webkit-border-radius: 2px;
  29. -moz-border-radius: 2px;
  30. border-radius: 2px;
  31. }
  32. img.btn_close {
  33. float: right;
  34. margin: -2px -2px 0 0;
  35. }
  36. /*--Making IE6 Understand Fixed Positioning--*/
  37. *html #fade {
  38. position: absolute;
  39. }
  40. *html .popup_block {
  41. position: absolute;
  42. }
Advertisement
Add Comment
Please, Sign In to add comment