p5js/css/style.css

14 lines
208 B
CSS
Raw Normal View History

2022-12-13 13:26:05 +00:00
* {
margin: 0;
2023-01-03 05:35:50 +00:00
padding: 0;
2022-12-13 13:26:05 +00:00
box-sizing: border-box;
background-color: gray;
}
2023-01-03 05:35:50 +00:00
2022-12-13 13:26:05 +00:00
body {
display: flex;
height: 100vh;
align-items: center;
2023-01-03 05:35:50 +00:00
justify-content: center;
2022-12-13 13:26:05 +00:00
}