]> git.eli173.com Git - pong_br/commitdiff
cleaned up index a little
authorElijah Cohen <eli@eli173.com>
Thu, 16 May 2019 02:45:12 +0000 (21:45 -0500)
committerElijah Cohen <eli@eli173.com>
Thu, 16 May 2019 02:45:12 +0000 (21:45 -0500)
TODO.org
web/index.html

index 10afdde93ff40e8762d0dfd5975c689c51393360..42655792f49f0370017b3a920cc3ae9282ce4586 100644 (file)
--- a/TODO.org
+++ b/TODO.org
@@ -1,8 +1,7 @@
 todo:
 - make sure files in the right place for server stuff
+- CLEAN UP THE INDEX PAGE! MAKE IT LOOK OKAY JEEZ
 maybe:
 - paddle movement bump
 - more balls
 - fiddle with variables to optimize fun
-
-
index 0573e5dba22d5176f48fdb9b88435fbe6df036f9..72517c2767082c100de73216c81acf80d1d9f628 100644 (file)
@@ -4,21 +4,32 @@
     <title>Pong: Battle Royale!</title>
     <style type="text/css">
       body { background-color: black; }
-      #content { width: 70%;
+      #content { width: 50%;
              display: block;
              margin: 0 auto;
              color: #fff8f8;
              text-align: center;
+             font-size: large;
               }
+      #name {
+         font-size: xx-large;
+      }
       #b {
          background-color: #aa2200;
          color: #00aa22;
+         padding: 15px 15px 15px 15px;
+         border-radius: 3px;
+      }
+    </style>
+    <style media="all and (max-width: 600px)">
+      #content {
+         width: 80%;
       }
     </style>
   </head>
   <body>
     <div id="content">
-      <h3>Pong: Battle Royale!</h3>
+      <p id="name">Pong: Battle Royale!</p>
       <p>Yes, this is a battle royale version of pong. You are matched up with a large amount of other players in a shrinking arena, and your goal is to survive to the very end. Use 'w' and 's', 'k' and 'j', or the arrow keys to move your paddle with the keyboard, or touch the top or bottom half of the screen to move up or down with a touchscreen.</p>
       <a href="play.html" id="b">PLAY</a>
     </div>