-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (70 loc) · 2.21 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/bentricon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>BentriCode</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css">
<style>
*{
margin: 0;
padding: 0;
}
/** Loading **/
.loading-thing {
width: 100px;
height: 100px;
/*desista de tentar alcançar o dao, o dao é eterno e intocavel*/
user-drag: none;
-webkit-user-drag: none;
user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
animation: giragira 3s infinite linear;
}
.loading-overlay {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: absolute;
background-color: #00121E;
color: white;
font-family: Arial, Helvetica, sans-serif;
font-size: large;
}
.loading-bold {
font-weight: bold;
color: rgb(102, 33, 33);
}
@keyframes giragira {
0% {
transform: rotate(0);
}
100% {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<noscript>
<div style="display: absolute; top: 40%; left: 40%;">
<h1 style="text-align: center;"><strong>Atenção!</strong></h1>
<p style="text-align: center;">Esta aplicação necessita do <strong>Javascript ativado</strong> para funcionar</p>
</div>
</noscript>
<div id="mainLoading" class="loading-overlay">
<img src="/Udao.png" class="loading-thing"></img>
<h2 class="loading-bold">Carregando...</h2>
<p id="textLoading">"Existem milhares de daos e todos levam ao topo"</p>
</div>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>