mudmapper.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. html, body {
  2. margin: 0;
  3. padding: 0;
  4. font-family: sans-serif;
  5. }
  6. .context-menu-container {
  7. padding: 15px;
  8. display: none;
  9. position: absolute;
  10. white-space: nowrap;
  11. }
  12. .context-menu {
  13. background-color: white;
  14. box-shadow: 5px 5px 15px gray;
  15. padding: 0px;
  16. }
  17. .context-menu ul {
  18. margin: 0px;
  19. padding: 0px;
  20. list-style: none;
  21. }
  22. .context-menu ul hr {
  23. margin-left: 5px;
  24. margin-right: 5px;
  25. }
  26. .context-menu ul li {
  27. padding: 5px;
  28. }
  29. .context-menu ul li:hover {
  30. padding: 5px;
  31. background-color: lightgray;
  32. }
  33. .modal-overlay {
  34. display: none;
  35. position: absolute;
  36. top: 0;
  37. left: 0;
  38. width: 100%;
  39. height: 100%;
  40. background: rgba(0,0,0,0.5);
  41. }
  42. .modal-window {
  43. display: none;
  44. position: relative;
  45. margin-top: 100px;
  46. background-color: white;
  47. min-width: 800px;
  48. width: 50%;
  49. min-height: 600px;
  50. height: 80%;
  51. margin-left: auto;
  52. margin-right: auto;
  53. border-radius: 15px;
  54. padding: 15px;
  55. }
  56. .modal-close {
  57. position: absolute;
  58. top: 0;
  59. right: 0;
  60. margin-top: 15px;
  61. margin-right: 15px;
  62. background-color: transparent;
  63. font-size: 32px;
  64. border: none;
  65. color: gray;
  66. }
  67. .modal-close:hover {
  68. color: black;
  69. cursor: pointer;
  70. }
  71. .title {
  72. text-align: center;
  73. font-weight: bold;
  74. font-size: 16px;
  75. width: 100%;
  76. }
  77. #mapper {
  78. width: 100%;
  79. height: 100%;
  80. background-color: lightgray;
  81. }
  82. #world-menu {
  83. display: block;
  84. }
  85. #room-menu {
  86. display: none;
  87. }
  88. #export-modal {
  89. text-align: center;
  90. }
  91. #export-modal textarea {
  92. width: 90%;
  93. margin-left: 15px;
  94. margin-right: 45px;
  95. height: 80%;
  96. }
  97. #import-modal {
  98. text-align: center;
  99. }
  100. #import-modal textarea {
  101. width: 90%;
  102. margin-left: 15px;
  103. margin-right: 45px;
  104. height: 70%;
  105. }
  106. #import-modal button {
  107. margin-top: 15px;
  108. height: 40px;
  109. width: 80px;
  110. }