/* JavaScript Snake By Patrick Gillespie http://patorjk.com/games/snake */ @import url('https://fonts.googleapis.com/css2?family=Electrolize&display=swap'); body { margin:0px; padding:0px; background-color:teal; } .snake-toolbar { font-family: Electrolize; color: white; } #game-area { margin:10px; padding:0px; } #game-area:focus { outline: none; } #mode-wrapper { font-family: Electrolize; font-size: 14px; color: whitesmoke; } a.snake-link, a.snake-link:link, a.snake-link:visited { color: white; } a.snake-link:hover { color: white; } .snake-pause-screen { font-family: Electrolize; font-size: 16px; position:absolute; width:300px; height:80px; text-align:center; top:50%; left:50%; margin-top:-40px; margin-left:-150px; display:none; background-color:#3E2E44; color: whitesmoke; } .snake-panel-component { position: absolute; font-family: Electrolize; font-size: 16px; color: #938996; text-align: center; background-color: #3E2E44; padding: 8px; margin: 0px; } .snake-snakebody-block { margin: 0px; padding: 0px; background-color: orange; position: absolute; border: 0px solid black; background-repeat: no-repeat; } .snake-snakebody-alive { background-image: url('./images/snakeblock.png'); } .snake-snakebody-dead { background-image: url('./images/dead-dark-snakeblock.png'); } .snake-food-block { margin: 0px; padding: 0px; background-color: red; border: 2px solid black; position: absolute; } .snake-playing-field { margin: 0px; padding: 0px; position: absolute; background-color: rgb(0, 180, 180); border: 3px solid black; } .snake-game-container { margin: 0px; padding: 0px; border-width: 0px; border-style: none; zoom: 1; background-color: #3E2E44; position: relative; } .snake-welcome-dialog { padding: 8px; margin: 0px; background-color: black; color: whitesmoke; font-family: Electrolize; font-size: 14px; position: absolute; top: 50%; left: 50%; width: 300px; /*height: 150px;*/ margin-top: -100px; margin-left: -158px; text-align: center; display: block; } .snake-try-again-dialog, .snake-win-dialog { padding: 8px; margin: 0px; background-color: black; color: whitesmoke; font-family: Electrolize; font-size: 16px; position: absolute; top: 50%; left: 50%; width: 300px; height: 100px; margin-top: -75px; margin-left: -158px; text-align: center; display: none; }