Game
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

style.css 386B

12345678910111213141516171819202122232425262728293031
  1. body {
  2. margin: 0px;
  3. }
  4. canvas {
  5. position: absolute;
  6. }
  7. #done-screen {
  8. position: absolute;
  9. background-color: rgba(255, 255, 255, 0.7);
  10. border: 1px solid black;
  11. border-radius: 20px;
  12. text-align: center;
  13. font-size: 2em;
  14. left: 0px;
  15. right: 0px;
  16. top: 0px;
  17. bottom: 0px;
  18. margin: auto;
  19. width: 300px;
  20. height: 150px;
  21. padding-top: 50px;
  22. }
  23. #done-screen.hidden {
  24. display: none;
  25. }