-
Notifications
You must be signed in to change notification settings - Fork 4
/
full-screen.html
44 lines (44 loc) · 1.66 KB
/
full-screen.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
<!DOCTYPE HTML>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<meta charset="utf-8" />
<title></title>
<meta name="Description" content=""/>
<link rel="shortcut icon" href=""/>
<!-- to get icon for the site, you can use this tool:
https://realfavicongenerator.net/
-->
<style>
:root {
--color: #aaa;
--background: #000;
--size: 1.4;
--animation: terminal-blink;
}
body {
margin: 0;
}
#term {
height: 100vh;
}
.terminal.hover {
--background: #696969;
}
</style>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/jquery.terminal/css/jquery.terminal.min.css"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<div id="term"></div>
<script src="https://cdn.jsdelivr.net/npm/jquery"></script>
<script src="https://cdn.jsdelivr.net/gh/jcubic/static/js/wcwidth.js"></script>
<script src="https://cdn.jsdelivr.net/npm/js-polyfills/keyboard.js"></script>
<script src="https://cdn.jsdelivr.net/gh/jcubic/jquery.terminal@devel/js/jquery.terminal.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/jquery.terminal/js/less.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@isomorphic-git/lightning-fs/dist/lightning-fs.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/pako@2.0.4/dist/pako.es5.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/isomorphic-git@1.17.0/index.umd.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/jcubic/static/js/path.js"></script>
<script src="./index.js"></script>
</body>
</html>