Pixel.css 273 B

12345678910111213141516171819
  1. html, body {
  2. margin: 0;
  3. width: 100vw;
  4. height: 100vh;
  5. background-color: darkgreen;
  6. }
  7. #canvas {
  8. background-color: palevioletred;
  9. }
  10. #level {
  11. position: fixed;
  12. left: 5px;
  13. bottom: 5px;
  14. font-size: 30;
  15. color: black;
  16. font-weight: 800;
  17. }