forked from oslokommune/okr-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
192 lines (182 loc) · 5.04 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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<!DOCTYPE html>
<html lang="no">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<meta
name="description"
content="«OKR-tracker» is a tool to map and coordinate Objective Key Results across organizations, departments and products"
/>
<meta
itemprop="description"
content="«OKR-tracker» is a tool to map and coordinate Objective Key Results across organizations, departments and products"
/>
<!-- OpenGraph tags -->
<meta
property="og:description"
content="«OKR-tracker» is a tool to map and coordinate Objective Key Results across organizations, departments and products"
/>
<meta property="og:type" content="website" />
<meta property="og:title" content="OKR-tracker" />
<meta property="og:url" content="https://okr.oslo.systems" />
<meta property="og:site_name" content="OKR-tracker" />
<!-- Twitter tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="OKR-tracker" />
<meta
name="twitter:description"
content="«OKR-tracker» is a tool to map and coordinate Objective Key Results across organizations, departments and products"
/>
<link rel="icon" href="/favicon.ico" />
<title>OKR | Knowit</title>
<style>
.spinner__wrapper {
position: fixed;
top: 0;
left: 0;
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
width: 100vw;
height: 100vh;
}
.lds-default {
position: relative;
display: inline-block;
width: 80px;
height: 80px;
}
.lds-default div {
position: absolute;
width: 6px;
height: 6px;
background: #292858;
border-radius: 50%;
animation: lds-default 1.2s linear infinite;
}
.lds-default div:nth-child(1) {
top: 37px;
left: 66px;
animation-delay: 0s;
}
.lds-default div:nth-child(2) {
top: 22px;
left: 62px;
animation-delay: -0.1s;
}
.lds-default div:nth-child(3) {
top: 11px;
left: 52px;
animation-delay: -0.2s;
}
.lds-default div:nth-child(4) {
top: 7px;
left: 37px;
animation-delay: -0.3s;
}
.lds-default div:nth-child(5) {
top: 11px;
left: 22px;
animation-delay: -0.4s;
}
.lds-default div:nth-child(6) {
top: 22px;
left: 11px;
animation-delay: -0.5s;
}
.lds-default div:nth-child(7) {
top: 37px;
left: 7px;
animation-delay: -0.6s;
}
.lds-default div:nth-child(8) {
top: 52px;
left: 11px;
animation-delay: -0.7s;
}
.lds-default div:nth-child(9) {
top: 62px;
left: 22px;
animation-delay: -0.8s;
}
.lds-default div:nth-child(10) {
top: 66px;
left: 37px;
animation-delay: -0.9s;
}
.lds-default div:nth-child(11) {
top: 62px;
left: 52px;
animation-delay: -1s;
}
.lds-default div:nth-child(12) {
top: 52px;
left: 62px;
animation-delay: -1.1s;
}
@keyframes lds-default {
0%,
20%,
80%,
100% {
transform: scale(1);
}
50% {
transform: scale(1.5);
}
}
</style>
</head>
<body>
<noscript>
<strong class="font-weight-medium"
>We're sorry but okr-tracker doesn't work properly without JavaScript
enabled. Please enable it to continue.</strong
>
</noscript>
<div id="spinner" class="spinner__wrapper">
<div class="lds-default">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
<!-- built files will be auto injected -->
<script>
// Add dark / light detection that runs before Vue.js load. Borrowed from overreacted.io
(function () {
window.__onThemeChange = function () {};
function setTheme(newTheme) {
window.__theme = newTheme;
preferredTheme = newTheme;
document.body.setAttribute('data-theme', newTheme);
window.__onThemeChange(newTheme);
}
let preferredTheme;
try {
preferredTheme = localStorage.getItem('okr-tracker-theme');
} catch (err) {}
window.__setPreferredTheme = function (newTheme) {
setTheme(newTheme);
try {
localStorage.setItem('okr-tracker-theme', newTheme);
} catch (err) {}
};
setTheme(preferredTheme || 'knowit');
})();
</script>
</body>
</html>