caffeous

popup box #2

Apr 29th, 2020
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. /*POPUP BOX by html-tutorials*/
  2. /*change the color hex to your liking*/
  3. #fade {
  4. display: none;
  5. position: fixed;
  6. left: 0;
  7. top: 0;
  8. width: 100%;
  9. height: 100%;
  10. opacity: 10;
  11. background-color: white;
  12. z-index: 9999;
  13. }
  14.  
  15. .popup_block {
  16. background: #FFFFFF;
  17. background-image: url(IMAGEURLHERE); /*delete line if you don't want a background image*/
  18. display: none;
  19. padding: 20px;
  20. float: left;
  21. height: auto;
  22. position: fixed;
  23. top:50%;
  24. left:50%;
  25. z-index: 999999999;
  26. -webkit-animation: zoomIn 1s;
  27. animation-name: zoomIn 1s;
  28. -moz-box-shadow: 0 0 5px #808080; /*delete line if you don't want a box shadow*/
  29. -webkit-box-shadow: 0 0 5px #808080; /*delete line if you don't want a box shadow*/
  30. -webkit-border-radius: 10px; /*delete line if you don't want a rounded border*/
  31. -moz-border-radius: 10px; /*delete line if you don't want a rounded border*/
  32. border-radius: 10px; /*delete line if you don't want a rounded border*/
  33. }
  34.  
  35. img.btn_close {
  36. float: right;
  37. margin: -5px -5px 0 0;
  38. }
  39.  
  40. *html #fade {
  41. position: absolute;
  42. }
  43.  
  44. *html .popup_block {
  45. position: absolute;
  46. }
Advertisement
Add Comment
Please, Sign In to add comment