-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (91 loc) · 3.34 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en" class="overscroll-none select-none">
<head>
<meta charset="utf-8">
<title>Gradpass</title>
<link rel="icon" href="src/logo/logo.png">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!---->
<meta name="title" content="Gradpass">
<meta name="description" content="Unlike Echo, this platform is designed for students; it is intended for use on phones or computers and primarily serves as a place to view grades and check agendas.">
<meta name="keywords" content="echo, agilix, grades, school, grade viewer, agenda, agendas">
<meta name="robots" content="index, follow">
<meta name="language" content="English">
<meta name="author" content="Wo-r">
<!---->
<link rel="manifest" href="manifest.json">
<script src="src/thirdparty/tailwind.js"></script>
<style>
@font-face {
font-family: "Nunito";
src: url("src/font.ttf") format("truetype");
}
.nunito {
font-family: "Nunito";
}
/* loader */
.loader,
.loader-static {
display: inline-block;
position: relative;
background-image: url("src/logo/logo-transparent.png");
background-repeat: no-repeat;
background-size: cover;
padding: 70px;
}
.loader {
animation: loader 2s cubic-bezier(1, 2, 0.1, 1) infinite;
}
@keyframes loader {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/* error shake */
@keyframes shake {
0% { transform: translateX(0); }
25% { transform: translateX(-8px); }
50% { transform: translateX(8px); }
75% { transform: translateX(-4px); }
100% { transform: translateX(0); }
}
.shake {
animation: shake 0.5s ease-in-out;
animation-duration: 800ms;
}
/* app loader */
.app-loading {
position: absolute;
top: calc(50% - 32px);
left: calc(50% - 32px);
}
/* slide-in animation */
@keyframes slidein {
from {
transform: translateY(100%);
}
to {
transform: translateY(0);
}
}
.animation-slidein {
animation: slidein 0.5s forwards;
}
</style>
</head>
<body class="bg-blue-700 overscroll-none nunito">
<div id="root">
<div id="pre-loader" class="fixed inset-0 flex items-center justify-center z-50">
<div class="loader-static"></div>
</div>
</div>
<!---->
<div id="overlays"></div>
</body>
<script src="src/thirdparty/jquery.js"></script>
<script type="module" src="app.js"></script>
</html>