Skip to content

Instantly share code, notes, and snippets.

@melcor76
Last active November 19, 2019 14:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save melcor76/2a0a92aae7457a3a6203900d65adedb1 to your computer and use it in GitHub Desktop.
Save melcor76/2a0a92aae7457a3a6203900d65adedb1 to your computer and use it in GitHub Desktop.
js-tetris arcade styles
* {
font-family: 'Press Start 2P', cursive;
}
.grid {
display: grid;
grid-template-columns: 320px 200px;
}
.right-column {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.game-board {
border: solid 2px;
}
.play-button {
background-color: #4caf50;
font-size: 16px;
padding: 15px 30px;
cursor: pointer;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment