This repository was archived by the owner on Nov 20, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (44 loc) · 1.48 KB
/
Copy pathindex.html
File metadata and controls
46 lines (44 loc) · 1.48 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HuopaOS</title>
<link rel="manifest" href="./manifest.json" />
<meta name="theme-color" content="#0a0a0a" />
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js" preload></script>
<script src="https://cdn.jsdelivr.net/npm/dompurify@2.4.0/dist/purify.min.js" preload></script>
<style>
body{
background-color: black;
color: white;
font-family: monospace;
}
p{
white-space: pre-line;
margin: 0.1em;
font-size: medium;
padding: 0;
}
input{
margin: 0;
color: white;
background-color: rgba(0, 0, 0, 0);
border-style: none;
outline-style: none;
font-size: medium;
width: 100%;
}
</style>
</head>
<body>
<div id="termDiv"></div>
<label id="inputLabel" style="display: inline-flex; align-items: center; white-space: nowrap; width: 100%;">
<span style="user-select: none;">$ </span>
<input id="textInput" type="text" autocorrect="off" spellcheck="false"
style="border: none; outline: none; font-family: inherit; background: transparent; color: inherit; flex: 1; min-width: 0;" />
</label>
</div>
</body>
<script src="main.js" defer></script>
</html>