-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinstall.html
55 lines (53 loc) · 1.32 KB
/
install.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
<html>
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" href="favicon.ico">
<title>Auto Minecraft Server - インストール中... - </title>
<style>
@font-face {
font-family: 'M+ 1p light';
src:local('mplus') ,
url('../fonts/mplus-1p-light.ttf');
}
* {
font-family: "M+ 1p light";
-webkit-user-select: none;
-webkit-user-drag:none;
}
@-webkit-keyframes animation21 {
0% {
background-position: 0;
}
100% {
background-position: 99%;
}
}
@keyframes animation21 {
0% {
background-position: 0;
}
100% {
background-position: 99%;
}
}
</style>
</head>
<body>
<h1 style="text-align: center;">Auto Minecraft Server をインストール中...</h1>
<div style="position: absolute;
top: 80%;
left: 0;
width: 100%;
height: 3px;
overflow: hidden;
color: white;
background-repeat: repeat-x;
background-size: 10% 100%;
background-image: -webkit-gradient(linear, left top, right top, from(#999), color-stop(0.5, #999), color-stop(0.51, transparent), to(transparent) );
background-image: -webkit-linear-gradient(left,#999 80%,transparent 0);
background-image: linear-gradient(to left,#999 80%,transparent 0);
vertical-align: middle;
-webkit-animation: animation21 10s linear infinite;
animation: animation21 10s linear infinite;"></div>
</body>
</html>