p5js/css/style.css
2023-01-03 13:35:50 +08:00

14 lines
208 B
CSS

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