-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
79 lines (76 loc) · 1.51 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
<!DOCTYPE html>
<html>
<head>
<title>Go with Failed</title>
<meta name="viewport" content="width=device-width">
<script src="./src/nipplejs.js" type="text/javascript"></script>
<script src="./src/matter.min.js" type="text/javascript"></script>
<script src="./src/index.js" type="text/javascript"></script>
<link href="./src/matter.css">
<style>
html, body {
width: 100%;
height: 100%;
padding: 0;
margin: 0;
}
* {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
outline: none;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
body {
background: #0f0f13;
overflow: hidden;
}
#notice {
position: fixed;
background: rgba(180,180,180,0.5);
width: 100%;
height: 8px;
bottom: 140px;
left: 0;
z-index: 9999;
}
.box-div {
position: fixed;
width: 100%;
height: 100%;
z-index: 10000;
top: 0;
left: 0;
}
.success-notice {
position: fixed;
width: 200px;
height: 150px;
left: calc(50% - 100px);
top: calc(50% - 75px);
z-index: 10000;
background: rgba(180,180,180,0.5);
color: white;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
border-radius: .8em;
}
.btn {
border: 1px solid transparent;
border-radius: 10px;
background: white;
width: 70px;
height: 30px;
cursor: pointer;
}
</style>
</head>
<body>
<div id="static"></div>
<div id="bottom"></div>
<div id="notice"></div>
</body>
</html>