smolworld / src /css /style.css
p3nGu1nZz's picture
✨ Add core game engine components including Scene, Layer, Time management, and input handling; implement configuration management
7b453e7
raw
history blame contribute delete
283 Bytes
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Courier New', Courier, monospace;
}
html,
body {
width: 100%;
height: 100%;
overflow: hidden;
background: black;
}
canvas {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: block;
}