-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
86 lines (80 loc) · 1.92 KB
/
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<!-- /*
* AUTH:MG193.7
*/ -->
<html>
<head>
<style type="text/css">
*
{font-family:"Courier New",Times,serif;}
#chatwindow,#inputwindow
{
border: white;
border-width: 1;
border-style:solid;
}
html,body
{
height: 100%;
overflow: auto;
margin: 0;
background-color: black;
}
.root
{
display: grid;
grid: 5%/auto;
height: 100%;
width: 100%;
}
.window
{
color: white;
display: grid;
grid: 100%/auto 20%;
height: 100%;
width: 100%;
}
.chater
{
color: white;
display: grid;
grid: 90% 8%/auto;
}
p
{
color: white;
}
</style>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>BBS BROADCAST</title>
</head>
<body>
<div class="root">
<div style="background-color:#2121bd;width:100%;height:100%;color:yellow;position:relative;">
<div style="position:absolute;top:18%;left:2%;">1337 BBS BROADCAST SYSTEM V0.1</div>
</div>
<div class="window">
<div class="chater">
<div id="chatwindow"></div>
<div style="position:relative;text-align:center;">
<div style="position:absolute;bottom:0;width:99%;" id="inputwindow">
<div style="float:left;width: 10%;overflow: hidden;height: 100%;"><font id="uname">Null</font></div>
<div style="height:100%;text-align:right;"><input type="text" style="background: transparent;width:85%;color:white;bottom:0;" hint="Message" id="msginput"></div>
</div>
</div>
</div>
<div style="border: white;border-style: solid;border-width: 1;">
<div style="text-align: center;border: white;border-style: solid;width: 1;">UserList</div>
<div id="userlist" style="overflow:auto;">
</div>
</div>
</div>
<script type="text/javascript">
var script = document.createElement("script");
script.src = "./Js/chat.js?" + Math.random();
document.getElementsByTagName("body")[0].appendChild(script);
</script>
</body>
</html>