less copy protection, more size visualization
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

59 行
915 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. height: var(--height);
  20. text-align: center;
  21. -webkit-user-drag: none;
  22. -khtml-user-drag: none;
  23. -moz-user-drag: none;
  24. -o-user-drag: none;
  25. }
  26. .selected {
  27. filter: drop-shadow(0px 0px 10px gold);
  28. }
  29. #world {
  30. min-width: 90vw;
  31. min-height: 80vh;
  32. }
  33. #menubar {
  34. display: flex;
  35. flex-direction: row;
  36. justify-content: center;
  37. align-items: center;
  38. min-height: 10vh;
  39. min-width: 100vw;
  40. background: #222;
  41. }
  42. .menu-item {
  43. font-size: 24px;
  44. color: #ccc;
  45. margin: 20px;
  46. }
  47. #display {
  48. width: 100%;
  49. height: 100%;
  50. background: #333;
  51. }