Advertisement
Guest User

Untitled

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