-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
131 lines (106 loc) · 3.36 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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<meta name="title" content="protiumx - profile terminal">
<meta name="description" content="Interact with my profile terminal" />
<meta name="keywords" content="brian mayo,software developer,infopage,blog,protiumx,protium">
<!-- Open Graph -->
<meta property="og:title" content="protiumx - info terminal">
<meta property="og:type" content="website" />
<meta property="og:image" content="https://protiumx.dev/preview.jpg">
<meta property="og:url" content="https://protiumx.dev">
<meta property="og:description" content="Get my contact info, projects, CV and more with unix-like commands">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://protiumx.dev/">
<meta property="twitter:title" content="protiumx - info terminal">
<meta property="twitter:description" content="Get my contact info, projects, CV and more with unix-like commands">
<meta property="twitter:image" content="https://protiumx.dev/preview.jpg">
<link rel="author" href="https://github.com/protiumx" />
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="stylesheet" href="./xterm/xterm.css">
<title>protiumx</title>
<script src="./xterm/xterm.js"></script>
<script src="./xterm/xterm-addon-fit.js"></script>
<script src="./xterm/xterm-addon-web-links.js"></script>
<style media="screen">
@font-face {
font-family: 'Fira Code';
src: url('./fonts/FiraCode-Regular.woff') format('woff');
font-weight: 400;
font-style: normal;
}
:root {
--color-highlight: #c115c7;
}
* {
box-sizing: border-box;
}
body {
background-color: #000;
color: white;
margin: 0;
overflow-x: auto;
overflow-y: hidden;
padding: 0;
}
.content {
height: 100%;
width: 100%;
display: flex;
flex-flow: column nowrap;
align-items: center;
justify-content: center;
padding: 30px;
min-width: 700px;
}
@media (max-width: 768px) {
.content {
justify-content: flex-start;
}
}
.content .terminal-container {
-webkit-box-shadow: 5px 5px 5px #cf442b;
box-shadow: 5px 5px 5px #cf442b;
border: 2px solid var(--color-highlight);
overflow: hidden;
padding: 1px;
flex-shrink: 0;
box-sizing: border-box;
max-width: 100%;
position: relative;
}
.xterm *::-webkit-scrollbar {
display: none;
position: relative;
}
#term {
padding: 4px;
}
.xterm * {
scrollbar-width: none;
}
#downlad {
display: none;
}
</style>
</head>
<body>
<noscript>
You need to enable JavaScript to run this app.
</noscript>
<main class="content">
<div class="terminal-container">
<div id="term"></div>
</div>
<a id="download" href=""></a>
</main>
<script src="./wasm/wasm_exec.js"></script>
<script type="module" src="./app/main.js?v=202409241951"></script>
</body>
</html>