generated from lolastudio/lit-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
80 lines (71 loc) · 1.72 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
80
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Pixel Utils - GIF Maker</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;700;900&display=swap"
rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap" rel="stylesheet">
<style>
body,
html,
.app {
width: 100vw;
height: 100vh;
overflow: hidden;
margin: 0;
padding: 0;
box-sizing: border-box;
}
body,
.app {
display: flex;
align-items: center;
justify-content: center;
background: #1b1829;
}
* {
color: #fffbd1;
font-family: 'Fredoka One', sans-serif;
}
.version {
position: fixed;
bottom: 15px;
right: 15px;
}
.overlayer-loader {
position: fixed;
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
z-index: 10000;
background: rgba(0, 0, 0, .75);
opacity: 1;
transition: all .2s ease;
}
.overlayer-loader.__hidden {
opacity: 0;
transition: all .2s ease;
z-index: -1;
}
</style>
</head>
<body>
<div class="overlayer-loader __hidden">
<svg-loader></svg-loader>
</div>
<div class="js-version version"></div>
<div class="app"></div>
</body>
<script src="./web_modules/CCapture.all.min.js"></script>
<script src="./web_modules/jszip.min.js"></script>
<script src="./web_modules/FileSaver.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/color-thief/2.3.0/color-thief.umd.js"></script>
<script src="listeners.js"></script>
<script src="index.js" type="module"></script>
<script src="utils.js" async defer></script>
<script src="version.js" async defer></script>
</html>