-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.html
94 lines (83 loc) · 2 KB
/
main.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<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,#00adff,#ff0000);
background-size: 2000% 2000%;
animation: rainbowbackground 20s ease infinite;
animation-fill-mode: forwards;
-webkit-app-region: drag;
}
a {
color: white;
}
#loading {
padding: 0;
margin: 0;
position: fixed;
bottom: 00%;
left: 50%;
transform: translate(-50%, -50%);
}
#title {
padding: 0;
margin: 0;
position: fixed;
top: 65%;
left: 50%;
transform: translate(-50%, -50%);
}
#dev {
padding: 0;
margin: 0;
position: fixed;
font-size: 20px;
top: 71%;
left: 50%;
transform: translate(-50%, -50%);
}
#updatenote {
padding: 0;
margin: 0;
position: fixed;
font-size: 20px;
top: 78%;
left: 50%;
transform: translate(-50%, -50%);
-webkit-app-region: no-drag;
}
img {
position: fixed;
top: 30%;
left: 50%;
transform: translate(-50%, -50%);
}
video {
position: fixed;
top: 30%;
left: 50%;
transform: translate(-50%, -50%);
}
</style>
<!--<h2>Welcome to Discord-Chroma By DELUUXE<br>-->
<!--<img src="img/logo.png">-->
<video autoplay loop>
<source src="img/DiscordChroma loading.webm" type="video/webm">
</video>
<h2 id="title">DiscordChroma</h2>
<h2 id="dev">Version 0.4.11</h2>
<h2 id="updatenote">alpha build<!--<br><a id="link" href="#">changelog</a>--></h2>
<h2 id="loading">Loading...</h2>
<!-- <script>
var open = require("open");
document.getElementById("link").addEventListener("click", ()=>{
open("https://github.com/DELUUXE/DiscordChroma/releases/latest");
})
</script> -->