p5js/css/style.css
2022-12-13 21:26:05 +08:00

13 lines
206 B
CSS

* {
padding: 0;
margin: 0;
box-sizing: border-box;
background-color: gray;
}
body {
display: flex;
height: 100vh;
justify-content: center;
align-items: center;
}