Guest User

Untitled

a guest
Jul 21st, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. <style type="text/css">
  2. canvas { position:absolute;
  3. z-index:-1;
  4. top:0px;
  5. left:100px;
  6. }
  7.  
  8. .wrapper{ height:100%;
  9. width:100%;
  10. }
  11.  
  12. .username { position:absolute;
  13. top:200px;
  14. left:150px;
  15. visibility:hidden;
  16. z-index:1;
  17. }
  18.  
  19. .password { position:absolute;
  20. top:300px;
  21. left:150px;
  22. visibility:hidden;
  23. z-index:2;
  24. }
  25.  
  26. </style>
  27.  
  28. </head>
  29. <body>
  30. <div id="wrapper">
  31. <canvas id = "gamescreen" height = "800" width = "800"></canvas>
  32. <input type="text" name="username" id="username" />
  33. <input type="password" name="password" id="password" />
  34. </div>
  35. </body>
Add Comment
Please, Sign In to add comment