-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (104 loc) · 2.68 KB
/
Copy pathindex.html
File metadata and controls
110 lines (104 loc) · 2.68 KB
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="minimum-scale=1, initial-scale=1, width=device-width, shrink-to-fit=no"
/>
<meta name="theme-color" content="#121212" />
<meta property="og:title" content="Emu, image optimization tool" />
<meta
property="og:description"
content="Compress, blur, crop, rotate.. Free and without tricks."
/>
<meta
property="og:image"
content="https://emu.assemblee-virtuelle.org/emeu.png"
/>
<meta property="og:url" content="https://emu.assemblee-virtuelle.org/" />
<meta property="og:type" content="website" />
<link rel="manifest" href="./manifest.json" />
<link rel="shortcut icon" href="./favicon.ico" />
<title>Emu</title>
<style>
.loader-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #121212;
z-index: 9999;
}
.loader-image {
width: auto;
height: 128px;
margin-bottom: 20px;
}
.loader-text {
color: #9dff20;
font-family:
-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
font-size: 1.2rem;
text-align: center;
max-width: 400px;
animation: fadeInOut 2s infinite;
}
@keyframes fadeInOut {
0% {
opacity: 0.6;
}
50% {
opacity: 1;
}
100% {
opacity: 0.6;
}
}
@media (prefers-color-scheme: light) {
.loader-container {
background-color: #ffffff;
}
.loader-text {
color: #2e7d32;
}
.loader-image {
filter: none;
}
}
@media (prefers-color-scheme: dark) {
.loader-container {
background-color: #121212;
}
.loader-text {
color: #9dff20;
}
.loader-image {
filter: invert(1);
}
}
</style>
</head>
<body>
<noscript> You need to enable JavaScript to run this app. </noscript>
<div id="root">
<div class="loader-container">
<img
src="/loading-3887_256.gif"
alt="Loading..."
class="loader-image"
/>
<div class="loader-text">
Bienvenue ! L'application est en cours de chargement...
</div>
</div>
</div>
</body>
<script type="module" src="/src/index.tsx"></script>
</html>