horizontal separation
This commit is contained in:
parent
8114129037
commit
1b12d29e54
1 changed files with 19 additions and 4 deletions
|
@ -17,16 +17,31 @@
|
|||
<script src="/socket.io/socket.io.js"></script>
|
||||
|
||||
<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>
|
||||
|
||||
<script type="text/javascript" src="utils.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="map"></div><br/>
|
||||
<div id="map"></div>
|
||||
|
||||
<div id="right">
|
||||
<input id="popup"/><button id="sendPopup">Send popup to all clients</button><br/>
|
||||
<button id="genCode">Generate invisibility code</button><div id="code"></div><br/>
|
||||
<button id="genCode">Generate invisibility code</button><div id="code"></div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
|
|
Loading…
Reference in a new issue