less copy protection, more size visualization
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.
 
 
 

44 line
635 B

  1. html {
  2. height: 100%;
  3. overflow-x: hidden;
  4. overflow-y: hidden;
  5. }
  6. body {
  7. background: #111;
  8. display: flex;
  9. flex-direction: column;
  10. align-items: center;
  11. justify-content: flex-start;
  12. height: 100%;
  13. width: 100%;
  14. }
  15. .entity {
  16. position: absolute;
  17. left: 50%;
  18. top: 50%;
  19. --height: 100px;
  20. width: 50px;
  21. background-color: red;
  22. height: var(--height);
  23. text-align: center;
  24. }
  25. #world {
  26. min-width: 90vw;
  27. min-height: 80vh;
  28. }
  29. #menubar {
  30. min-height: 10vh;
  31. min-width: 100vw;
  32. background: #222;
  33. }
  34. #display {
  35. width: 100%;
  36. height: 100%;
  37. background: #333;
  38. }