main.css 208 B

1234567891011121314151617
  1. * {
  2. -webkit-user-select: none;
  3. user-select: none;
  4. }
  5. html, body {
  6. width: 100%;
  7. height: 100%;
  8. overflow: hidden;
  9. background: #000;
  10. }
  11. .game {
  12. width: 640px;
  13. height: 480px;
  14. margin: 20px auto;
  15. }