1234567891011121314151617181920212223242526272829303132333435 |
- <style type="text/css">
- #game-hud {
- font-family: sans-serif;
- font-size: 2em;
- color: white;
- text-align: center;
- width: 100%;
- height: 100%;
- margin-left: auto;
- margin-right: auto;
- }
- #game-hud #moves-label {
- display: inline
- }
- #game-hud #moves {
- display: inline
- }
- #game-hud #score-label {
- display: inline
- }
- #game-hud #score {
- display: inline
- }
- </style>
- <div id="game-hud">
- <div id="moves-label">Moves remaining:</div>
- <div id="moves">3</div>
- <div id="score-label">Score:</div>
- <div id="score">0</div>
- </div>
|