html, body { margin: 0; padding: 0; font-family: sans-serif; } .context-menu-container { padding: 15px; display: none; position: absolute; white-space: nowrap; } .context-menu { background-color: white; box-shadow: 5px 5px 15px gray; padding: 0px; } .context-menu ul { margin: 0px; padding: 0px; list-style: none; } .context-menu ul hr { margin-left: 5px; margin-right: 5px; } .context-menu ul li { padding: 5px; } .context-menu ul li:hover { padding: 5px; background-color: lightgray; } .modal-overlay { display: none; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); } .modal-window { display: none; position: relative; margin-top: 100px; background-color: white; min-width: 800px; width: 50%; min-height: 600px; height: 80%; margin-left: auto; margin-right: auto; border-radius: 15px; padding: 15px; } .modal-close { position: absolute; top: 0; right: 0; margin-top: 15px; margin-right: 15px; background-color: transparent; font-size: 32px; border: none; color: gray; } .modal-close:hover { color: black; cursor: pointer; } .title { text-align: center; font-weight: bold; font-size: 16px; width: 100%; } #mapper { width: 100%; height: 100%; background-color: lightgray; } #world-menu { display: block; } #room-menu { display: none; } #export-modal { text-align: center; } #export-modal textarea { width: 90%; margin-left: 15px; margin-right: 45px; height: 80%; } #import-modal { text-align: center; } #import-modal textarea { width: 90%; margin-left: 15px; margin-right: 45px; height: 70%; } #import-modal button { margin-top: 15px; height: 40px; width: 80px; }