-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
138 lines (121 loc) · 3.67 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html>
<head>
<style>
html,
body {
background-color: #333;
color: rgba(36, 114, 200, 0.996);
font-family: monospace;
margin: 0;
padding: 0;
}
/* The console container element */
#console {
height: 777px;
width: 100%;
position: relative;
background-color: rgb(37, 37, 38);
border: 2px solid #CCC;
margin: 0 auto;
}
/* The inner console element. */
.jqconsole {
padding: 10px;
}
/* The cursor. */
.jqconsole-cursor {
/*background-color: gray;*/
color: white;
background-color: black;
}
/* The cursor color when the console looses focus. */
.jqconsole-blurred .jqconsole-cursor {
background-color: #666;
background-color: black;
}
/* The current prompt text color */
.jqconsole-prompt {
color: red;
}
/* The command history */
.jqconsole-old-prompt {
color: darkred;
font-weight: normal;
}
/* The text color when in input mode. */
.jqconsole-input {
color: #dd0;
}
/* Previously entered input. */
.jqconsole-old-input {
color: #bb0;
font-weight: normal;
}
/* The text color of the output. */
.jqconsole-output {
color: ghostwhite;
}
.jqconsole-prompt-text{
color: white;
}
@-webkit-keyframes blinker {
from {
opacity: 1.0;
}
to {
opacity: 0.0;
}
}
@-moz-keyframes blinker {
from {
opacity: 1.0;
}
to {
opacity: 0.0;
}
}
@-ms-keyframes blinker {
from {
opacity: 1.0;
}
to {
opacity: 0.0;
}
}
@-o-keyframes blinker {
from {
opacity: 1.0;
}
to {
opacity: 0.0;
}
}
.jqconsole-ansi-blink {
-webkit-animation-name: blinker;
-moz-animation-name: blinker;
-ms-animation-name: blinker;
-o-animation-name: blinker;
-webkit-animation-iteration-count: infinite;
-moz-animation-iteration-count: infinite;
-ms-animation-iteration-count: infinite;
-o-animation-iteration-count: infinite;
-webkit-animation-timing-function: cubic-bezier(1.0, 0, 0, 1.0);
-ms-animation-timing-function: cubic-bezier(1.0, 0, 0, 1.0);
-o-animation-timing-function: cubic-bezier(1.0, 0, 0, 1.0);
-moz-animation-timing-function: cubic-bezier(1.0, 0, 0, 1.0);
-webkit-animation-duration: 1s;
-moz-animation-duration: 1s;
-o-animation-duration: 1s;
-ms-animation-duration: 1s;
}
</style>
<link rel="stylesheet" type="text/css" href="lib/ansi.css">
</head>
<body>
<div id="console"></div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<script src="lib/jqconsole.js" type="text/javascript" charset="utf-8"></script>
<script src="lib/main.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>