Skip to content
Snippets Groups Projects
Select Git revision
  • f99ed77c06ecc54f1b56b682de35dd4a1c93181f
  • master default protected
  • circleci-project-setup
  • actions
4 results

index.html

Blame
  • index.html 910 B
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Death by Hamster</title>
    <style>
        body {
            background:rgb(22, 22, 22);
        }
    #gameCanvas {
    display: block;
    margin: auto;
    width: 1200px;
    height: 800px;
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: pixelated;
    cursor: none;
    }
    /* if the canvas can't fit the screen, shrink it, maintaining the aspect ratio */
    
        aside {
            float:left;
        }
        aside pre {
            color: white;
        }
    
    @media screen and (max-height: 800px) {
        #gameCanvas {
            width: auto;
            height: 100%;
        }
    }
    
    </style>
    <aside >
        <pre id="leveltext">    </pre>
    </aside>
    <canvas width="600" height="400" id="gameCanvas">
    </canvas>
    <script id="fontScript" src="./letters.js"></script>
    <script src="./l.js"></script>
    <script src="./game.js"></script>