-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (67 loc) · 2.15 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
87
88
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>TerMight</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.3.js"></script>
<link rel="stylesheet" type="text/css" href="/css/result-light.css">
<script type="text/javascript" src="../terminal.js"></script>
<style type="text/css">
#windowsconsole {
position: absolute;
top:0;
bottom:0;
}
#givencommand {
outline: none;
font-family:'Ubuntu Mono', sans-serif;
}
#currentcommandcursor {
outline: none;
font-family:'Ubuntu Mono', sans-serif;
}
#consoleoutput {
outline: none;
font-family:'Ubuntu Mono', sans-serif;
font-size: 16px;
resize: none;
height:100%;
width:100%;
background:transparent;
color:white;
border: none;
}
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(239, 239, 237, 1);
border-radius: 10px;
background: white;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
html,body {
background:#2d0923;
height: 100%;
width: 100%;
overflow:hidden;
}
</style>
</head>
<body>
<link href="http://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700" rel="stylesheet" type="text/css">
<div id="mainframe">
<div class="dialog_window" title="BASH" id="windowsconsole">
<div id="consolebox" style="background-color: rgb(45, 9, 35); height: 399px; width: 528px; background-position: initial initial; background-repeat: initial initial;">
<textarea id="consoleoutput" style="width: 528px; height: 399px;" readonly></textarea>
</div>
<div>
<text id="currentcommandcursor" style="color: white; display: inline; opacity: 0.9922821672646027;">~$</text>
<input id="givencommand" type="text" style="background-color: transparent; color: white; border: none; width: 340px; background-position: initial initial; background-repeat: initial initial;">
</div>
</div>
</div>
</body>
</html>