less copy protection, more size visualization
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

56 satır
833 B

  1. html {
  2. height: 100%;
  3. overflow-x: hidden;
  4. overflow-y: hidden;
  5. color: #eee;
  6. }
  7. body {
  8. background: #111;
  9. display: flex;
  10. flex-direction: column;
  11. align-items: center;
  12. justify-content: flex-start;
  13. height: 100%;
  14. width: 100%;
  15. }
  16. .entity {
  17. position: absolute;
  18. --height: 100px;
  19. width: 50px;
  20. background-color: red;
  21. height: var(--height);
  22. text-align: center;
  23. }
  24. .entity.selected {
  25. box-shadow: 10px 10px 5px grey;
  26. }
  27. #world {
  28. min-width: 90vw;
  29. min-height: 80vh;
  30. }
  31. #menubar {
  32. display: flex;
  33. flex-direction: row;
  34. justify-content: center;
  35. align-items: center;
  36. min-height: 10vh;
  37. min-width: 100vw;
  38. background: #222;
  39. }
  40. .menu-item {
  41. font-size: 24px;
  42. color: #ccc;
  43. }
  44. #display {
  45. width: 100%;
  46. height: 100%;
  47. background: #333;
  48. }