-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (66 loc) · 2.24 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
<html>
<head>
<title>$_cmd-chat</title>
<link href='https://fonts.googleapis.com/css?family=Source+Code+Pro' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js" type="text/javascript"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.4.2/underscore-min.js" type="text/javascript"></script>
<script>
Josh = {
Debug: false
};
</script>
<script src="js/killring.js" type="text/javascript"></script>
<script src="js/history.js" type="text/javascript"></script>
<script src="js/readline.js" type="text/javascript"></script>
<script src="js/shell.js" type="text/javascript"></script>
<script src="js/pathhandler.js" type="text/javascript"></script>
<script src="js/myjs.js" type="text/javascript"></script>
</head>
<body>
<style>
#title {
font-size: 24px;
font-family: monospace;
}
body {
background-image: url(images/lake.jpg);
background-color: rgba(0, 0, 0, 0.1);
background-blend-mode: multiply;
color: white;
}
.center {
margin: 0 auto;
position: relative;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
#shell-panel {
margin-top: 1rem;
width: 90vw;
height: 83vh;
cursor: text;
}
#shell-view {
height: 100%;
width: 100%;
background-color: rgba(0, 0, 0, 0.5);
border-radius: 0.5rem;
font-family: monospace;
font-size: 1.2rem;
border: none;
color: white;
padding: 0.5rem;
outline: none;
}
</style><br>
<center><span id="title">Welcome to <b>$_cmdchat</b></span></center>
<div class="center" id="shell-panel" onclick="keyboard();">
<div id="shell-view">
</div>
</div>
</body>
</html>