generated from electron/electron-quick-start-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (43 loc) · 1.16 KB
/
index.html
File metadata and controls
50 lines (43 loc) · 1.16 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
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>fury-commander</title>
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta http-equiv="Content-Security-Policy" content="default-src 'unsafe-inline'; script-src 'self'; font-src 'self'" />
<meta http-equiv="X-Content-Security-Policy" content="default-src 'unsafe-inline'; script-src 'self'" />
<style>
@font-face {
font-family: 'VGA';
src: url('vga.ttf');
}
html, body {
width: 100%;
height: 100%;
overflow: hidden;
margin: 0;
}
/* width */
::-webkit-scrollbar {
width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
background: rgba(128, 128, 128, 0.3);
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #888;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555;
}
</style>
</head>
<body style="font-family: 'VGA', monospace;">
<div id="root" style="width: 100%; height: 100%; overflow: hidden;"></div>
<!-- You can also require other files to run in this process -->
<script src="./bundle/main.js"></script>
</body>
</html>