-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (52 loc) · 958 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<script src="/socket.io/socket.io.js"></script>
<script src="http://code.jquery.com/jquery-1.11.1.js"></script>
<body>
<div id="options_div">
<label><input type="checkbox" id="option_showip">Show your IP</label>
</div>
<div id="console_div"></div>
</body>
<script src="/index.js"></script>
<style>
body{
background: #F0F0F0;
overflow: hidden;
margin: 0px;
}
body.no_cursor{
cursor: none;
}
*:not(body){
cursor: inherit;
}
#options_div{
margin: 10px;
}
#console_div{
box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
width: 300px;
height: 140px;
position: absolute;
bottom: 0px;
left: 0px;
font-family: arial;
font-size: 16px;
padding: 10px;
overflow: auto;
}
.chat_text{
display: inline-block;
margin-bottom: 4px;
}
.pointer{
width: 12px;
position: absolute;
pointer-events: none;
}
.pointer_text{
pointer-events: none;
position: absolute;
font-family: arial;
font-size: 10px;
}
</style>