Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.35 KB | None | 0 0
  1.  
  2.  
  3. /*#####POPUPS####*/
  4. .dialog_background{
  5. position:fixed;
  6. width:100%;
  7. height:100%;
  8. background-color:rgba(0,0,0,0.38); 
  9. }
  10.  
  11. .hide{
  12. display:none
  13. }
  14. .dialog_obj{
  15. position:fixed;
  16. left:50%;
  17. margin-left:-200px;
  18. width:400px;
  19. top:50%;
  20. margin-top:-300px;
  21. height:600px;  
  22. background-color:white;
  23. border:#9C9C9C 1px solid;
  24. border-radius:10px;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement