horizontal separation

This commit is contained in:
catvayor 2023-06-11 13:44:11 +02:00
parent 8114129037
commit 1b12d29e54

View file

@ -17,16 +17,31 @@
<script src="/socket.io/socket.io.js"></script> <script src="/socket.io/socket.io.js"></script>
<style type="text/css"> <style type="text/css">
#map { height: 750px; } #map {
position: fixed;
top: 0px;
left: 0px;
height: 100%;
width: 50%;
}
#right {
position: fixed;
width: 49%;
height: 98%;
top: 1%;
right: 0.5%;
}
</style> </style>
<script type="text/javascript" src="utils.js"></script> <script type="text/javascript" src="utils.js"></script>
</head> </head>
<body> <body>
<div id="map"></div><br/> <div id="map"></div>
<input id="popup"/><button id="sendPopup">Send popup to all clients</button><br/> <div id="right">
<button id="genCode">Generate invisibility code</button><div id="code"></div><br/> <input id="popup"/><button id="sendPopup">Send popup to all clients</button><br/>
<button id="genCode">Generate invisibility code</button><div id="code"></div>
</div>
<script type="text/javascript"> <script type="text/javascript">
////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////