-
Notifications
You must be signed in to change notification settings - Fork 2
/
update.html
61 lines (54 loc) · 1.27 KB
/
update.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
<style>
@keyframes rainbowbackground {
0%{background-position:90% 0%}
50%{background-position:0% 85%}
100%{background-position:90% 0%}
}
body {
font-family: system, -apple-system, '.SFNSText-Regular', 'SF UI Text', 'Lucida Grande', 'Segoe UI', Ubuntu, Cantarell, sans-serif;
color: #fff;
text-align: center;
font-size: 40px;
background: linear-gradient(200deg, #00ff00, #7289DA, #000000, #000000);
background-size: 2000% 2000%;
animation: rainbowbackground 15s ease infinite;
animation-fill-mode: forwards;
-webkit-app-region: drag;
}
#loading {
padding: 0;
margin: 0;
position: fixed;
bottom: 10%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 40;
}
#title {
padding: 0;
margin: 0;
position: fixed;
top: 55%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 40;
}
#dev {
padding: 0;
margin: 0;
position: fixed;
font-size: 20px;
top: 63%;
left: 50%;
transform: translate(-50%, -50%);
}
img {
position: fixed;
top: 30%;
left: 50%;
transform: translate(-50%, -50%);
}
</style>
<img src="img/logo.png">
<h2 id="title">update downloaded</h2>
<h2 id="loading">restarting to install update...</h2>