Advertisement
thecooldude0517

Untitled

Dec 9th, 2016
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. CSS Text box code:
  2.  
  3. .blur {
  4. filter: blur(5px);
  5. -webkit-filter: blur(5px);
  6. -moz-filter: blur(5px);
  7. -o-filter: blur(5px);
  8. -ms-filter: blur(5px);
  9.  
  10. }
  11. #overlay {
  12. position: fixed;
  13. display: none;
  14. left: 0px;
  15. top: 0px;
  16. right: 0px;
  17. bottom: 0px;
  18. background: rgba(255,255,255,.8);
  19. z-index: 999;
  20. }
  21. #popup {
  22. position: absolute;
  23. width: 400px;
  24. height: 200px;
  25. background: rgb(255,255,255);
  26. border: 5px solid rgb(90,90,90);
  27. left: 0px;
  28. right: 0px;
  29. top: 0px;
  30. bottom: 0px;
  31. margin: auto;
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement