-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (38 loc) · 1.25 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Purr Editor</title>
<!-- Mobile -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- Chrome / Android -->
<meta name="mobile-web-app-capable" content="yes">
<!-- Blue Grey 700 -->
<meta name="theme-color" content="#263238">
<!-- Import manifest for serviceWorker, pushNotifications & addToHomeScreen support. -->
<link rel="manifest" href="manifest.json">
<link rel="import" href="src/service-worker-registration.html">
<link rel="import" href="src/purr-editor.html">
<link rel="import" href="src/styles/ace-custom-styles.html">
<style>
html, body {
margin: 0;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
}
custom-pages .exit-animation {
opacity: 0;
transform: scale(0);
transition: transform ease-out 160ms, opacity ease-out 160ms;
}
</style>
</head>
<body>
<purr-editor></purr-editor>
<noscript>Purr is only supported on chrome at the moment and rendering happens on client side, more browser support and render options coming soon.</noscript>
</body>
</html>