pong.css 629 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. * {
  2. box-sizing: border-box;
  3. }
  4. body {
  5. background-color: #222222;
  6. width: 100%;
  7. height: 100%;
  8. display: flex;
  9. padding: 0;
  10. margin: 0;
  11. margin-top: 80px;
  12. }
  13. .game-container {
  14. position: relative;
  15. width: 1200px;
  16. height: 900px;
  17. margin: 0 auto;
  18. }
  19. canvas {
  20. position: absolute;
  21. top: 0;
  22. left: 0;
  23. right: 0;
  24. bottom: 0;
  25. background-color: #ffffff;
  26. }
  27. .main-menu {
  28. position: absolute;
  29. top: 320px;
  30. left: 450px;
  31. width: 300px;
  32. height: 260px;
  33. display: flex;
  34. flex-direction: column;
  35. align-items: center;
  36. justify-content: space-evenly;
  37. }
  38. .main-menu button {
  39. width: 100%;
  40. height: 80px;
  41. font-size: 24px;
  42. font-weight: bold;
  43. }