25 lines
334 B
CSS
25 lines
334 B
CSS
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
background: #333;
|
|
}
|
|
|
|
.game-container {
|
|
position: relative;
|
|
width: 352px;
|
|
height: 198px;
|
|
margin: 0 auto;
|
|
margin-top: 20px;
|
|
outline: 1px solid #fff;
|
|
|
|
transform: scale(2) translateY(30%);
|
|
}
|
|
|
|
.game-container canvas {
|
|
image-rendering: pixelated;
|
|
} |