-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (54 loc) · 1.3 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
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-175516300-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-175516300-1');
</script>
<title>[email protected]: ~</title>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="term.js"></script>
<script src="script.js"></script>
<script src="//unpkg.com/navigo@6"></script>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/css/jquery.terminal.min.css"/>
<style>
body {
height:100%;
background-color: black;
}
.no-wrap {
white-space: pre;
}
a {
color: #0f60ff;
}
a:hover {
background-color: #0f60ff;
color: black !important;
text-decoration: none;
}
.terminal {
width: 100%;
max-width: 1140px;
margin: auto;
}
.terminal, .cmd, .terminal .terminal-output div div, .cmd .prompt {
--size: 1.5;
}
pre {
white-space: pre-wrap;
}
.footer {
text-align: center;
}
</style>
</head>
<body>
<div id="terminal" class="conm"></div>
<p class="footer"> © grantklich.com</p>
</body>
</html>