-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (42 loc) · 957 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>WoW Mods</title>
<style>
.logo {
background: url(./Teaser.png) no-repeat center center scroll;
display: table;
height: 100vh;
width: 100%;
padding: 0;
text-align: center;
animation: flash infinite 10s ease-in-out;
}
.appPreview {
background: url(./appPreview.png) no-repeat center center scroll;
display: table;
height: 100vh;
width: 100%;
padding: 0;
text-align: center;
opacity: 0.1;
position: absolute;
}
@keyframes flash {
0%,
50%,
100% {
opacity: 0.8;
}
25%,
75% {
opacity: 0.1;
}
}
</style>
</head>
<body style="background: rgb(32, 32, 32); margin: 0; overflow: hidden">
<div class="appPreview"></div>
<div class="logo"></div>
</body>
</html>