-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
54 lines (49 loc) · 1.31 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta charset="utf-8">
<style>
*::-webkit-scrollbar {
display: none;
}
* {
scrollbar-width: none;
}
</style>
<script src="3rdparty/react@16.13.1/react.development.js"></script>
<script src="3rdparty/react-dom@16.13.1/react-dom.development.js"></script>
<script src="3rdparty/classnames@2.2.6/classnames.js"></script>
<script src="dist/material-ui.min.js"></script>
<script src="dist/yolo-mark-pwa.js"></script>
<link rel="stylesheet" href="assets/css/normalize.css" />
<link rel="stylesheet" href="3rdparty/material-design-icons@3.0.1/material-icons.css" />
<link rel="stylesheet" href="3rdparty/typeface-roboto@0.0.75/typeface-roboto.css" />
<style>
html,
body,
#mount-point {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
-webkit-user-drag: none;
-khtml-user-drag: none;
-moz-user-drag: none;
-o-user-drag: none;
user-drag: none;
}
</style>
</head>
<body>
<div id="mount-point"></div>
<script>
mark.main();
</script>
</body>
</html>