-
Notifications
You must be signed in to change notification settings - Fork 61
/
index.html
146 lines (127 loc) · 4.62 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon"
href="/favicon.ico" />
<title>Nomie 6 OSS</title>
<script>
var global = global || window
var Buffer = Buffer || []
var process = process || { env: { DEBUG: undefined }, version: [] }
</script>
<meta name="viewport"
content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, viewport-fit=cover" />
<base href="." />
<meta http-equiv="Cache-Control"
content="max-age=600" />
<meta name="description"
content="Privately, measure, monitor and master your life. Daily journal with the tap of a button." />
<meta name="apple-mobile-web-app-title"
content="Nomie 6" />
<meta name="theme-color"
content="#000000" />
<meta name="apple-mobile-web-app-capable"
content="yes" />
<meta name="apple-mobile-web-app-status-bar-style"
content="black" />
<meta name="full-screen"
content="yes" />
<link rel="apple-touch-icon"
href="/app-icons/nomie6-head-512.png" />
<link rel="icon"
type="image/png"
href="/favicon.png" />
<link rel="icon"
type="image/png"
sizes="192x192"
href="/app-icons/nomie6-head-192.png" />
<style>
.loading-screen {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: 4000;
display: flex;
align-items: center;
justify-content: center;
}
.loading-screen.deleted {
pointer-events: none;
transform: translateY(600px);
}
.loading-screen:before {
transition: all 0.5s ease-in-out;
content: "";
/* background-color: #fff; */
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: 300;
}
.loading-screen:after {
transition: all 0.5s ease-in-out;
content: "";
/* background-image: url(/images/nomie-splash.svg); */
background-size: cover;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: 400;
background-position: center;
}
.version {
position: absolute;
width: 100px;
bottom: 50px;
font-size: 14px;
color: #FFF;
height: 24px;
line-height: 24px;
padding: 0 12px;
text-align: center;
transition: all 2s ease-in-out;
}
.delete-on-app {
transition: all 2s ease-in-out;
}
.delete-on-app.deleted {
transition: all 0.5s ease-in-out;
opacity: 0;
transform: scale(1.7);
}
.delete-on-app.deleted .version {
opacity: 0;
}
.launch-gradient {
background: linear-gradient(135deg, #00EAFF 0%, #3C8CE7 100%);
}
body .woot--bubble-holder {
display: none;
}
</style>
<script>window.sa_event = window.sa_event || function () { var a = [].slice.call(arguments); window.sa_event.q ? window.sa_event.q.push(a) : window.sa_event.q = [a] };</script>
</head>
<body>
<div class="loading-screen delete-on-app launch-gradient">
<div class="text-center h-16">
<img src="/app-icons/nomie6-head-120.png"
style="margin-bottom:10px; border-radius: 33%; overflow: hidden; box-shadow: 0px 13px 30px -5px rgba(0, 0, 0, 0.14)" /><br />
<div style="text-align: center; opacity:50%">Nomie 6
OSS</div>
</div>
<div class="version"></div>
</div>
<div id="app"
class=""></div>
<script type="module"
src="/src/main.ts"></script>
</body>
</html>