-
Notifications
You must be signed in to change notification settings - Fork 720
Expand file tree
/
Copy pathindex.html
More file actions
148 lines (137 loc) · 4.42 KB
/
Copy pathindex.html
File metadata and controls
148 lines (137 loc) · 4.42 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!doctype html>
<html lang="en" translate="no" class="notranslate">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="minimum-scale=1, initial-scale=1, width=device-width"
/>
<meta name="theme-color" content="#000000" />
<meta name="google" content="notranslate" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<link rel="manifest" href="./manifest.json" />
<link rel="shortcut icon" href="./favicon.ico" />
<link rel="apple-touch-icon" sizes="40x40" href="./appIcon/40.png" />
<link rel="apple-touch-icon" sizes="58x58" href="./appIcon/58.png" />
<link rel="apple-touch-icon" sizes="60x60" href="./appIcon/60.png" />
<link rel="apple-touch-icon" sizes="76x76" href="./appIcon/76.png" />
<link rel="apple-touch-icon" sizes="80x80" href="./appIcon/80.png" />
<link rel="apple-touch-icon" sizes="87x87" href="./appIcon/87.png" />
<link rel="apple-touch-icon" sizes="114x114" href="./appIcon/114.png" />
<link rel="apple-touch-icon" sizes="120x120" href="./appIcon/120.png" />
<link rel="apple-touch-icon" sizes="128x128" href="./appIcon/128.png" />
<link rel="apple-touch-icon" sizes="136x136" href="./appIcon/136.png" />
<link rel="apple-touch-icon" sizes="152x152" href="./appIcon/152.png" />
<link rel="apple-touch-icon" sizes="167x167" href="./appIcon/167.png" />
<link rel="apple-touch-icon" sizes="180x180" href="./appIcon/180.png" />
<link rel="apple-touch-icon" sizes="192x192" href="./appIcon/192.png" />
<link rel="apple-touch-icon" sizes="1024x1024" href="./appIcon/1024.png" />
<title>Atomic CRM</title>
<style>
body {
margin: 0;
padding: 0;
font-family: sans-serif;
}
/* Prevent accidental double-tap zoom on interactive elements */
button,
input,
select,
textarea,
a {
touch-action: manipulation;
}
.loader-container {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: #fafafa;
}
/* CSS Spinner from https://projects.lukehaas.me/css-loaders/ */
.loader,
.loader:before,
.loader:after {
border-radius: 50%;
}
.loader {
color: #283593;
font-size: 11px;
text-indent: -99999em;
margin: 55px auto;
position: relative;
width: 10em;
height: 10em;
box-shadow: inset 0 0 0 1em;
-webkit-transform: translateZ(0);
-ms-transform: translateZ(0);
transform: translateZ(0);
}
.loader:before,
.loader:after {
position: absolute;
content: "";
}
.loader:before {
width: 5.2em;
height: 10.2em;
background: #fafafa;
border-radius: 10.2em 0 0 10.2em;
top: -0.1em;
left: -0.1em;
-webkit-transform-origin: 5.2em 5.1em;
transform-origin: 5.2em 5.1em;
-webkit-animation: load2 2s infinite ease 1.5s;
animation: load2 2s infinite ease 1.5s;
}
.loader:after {
width: 5.2em;
height: 10.2em;
background: #fafafa;
border-radius: 0 10.2em 10.2em 0;
top: -0.1em;
left: 5.1em;
-webkit-transform-origin: 0px 5.1em;
transform-origin: 0px 5.1em;
-webkit-animation: load2 2s infinite ease;
animation: load2 2s infinite ease;
}
@-webkit-keyframes load2 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes load2 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div id="root">
<div class="loader-container">
<div class="loader">Loading...</div>
</div>
</div>
<noscript>You need to enable JavaScript to run this app.</noscript>
<script type="module" src="<%= mainScript %>"></script>
</body>
</html>