-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathviewer.html
More file actions
44 lines (43 loc) · 947 Bytes
/
Copy pathviewer.html
File metadata and controls
44 lines (43 loc) · 947 Bytes
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 lang="en">
<head>
<meta charset="UTF-8">
<title>Crypt3TR Viewer</title>
<style>
:root {
//color-scheme: light dark;
}
html, body {
margin: 0;
padding: 0;
background: transparent;
}
body {
//font-family: system-ui, sans-serif;
//font-size: 14px;
line-height: 1.4;
overflow: hidden;
background: transparent;
//background: #161717;
//color: #fff; /* TEXTE BLANC */
color: inherit;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
font-size: medium;
}
.content {
white-space: pre-wrap;
word-wrap: break-word;
margin: 0;
padding: 0;
}
.error {
color: #f87171;
font-weight: 500;
}
</style>
</head>
<body>
<div id="content" class="content"></div>
<script src="viewer.js"></script>
</body>
</html>