generated from coral-xyz/xnft-quickstart
-
Notifications
You must be signed in to change notification settings - Fork 19
/
template.html
64 lines (59 loc) · 1.66 KB
/
template.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta httpequiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport"
content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1.00001,viewport-fit=cover" />
<title>
xNFT
</title>
<style>
#root,
body,
html {
width: 100%;
-webkit-overflow-scrolling: touch;
margin: 0;
padding: 0;
min-height: 100%
}
#root {
flex-shrink: 0;
flex-basis: auto;
flex-grow: 1;
display: flex;
flex: 1
}
html {
scroll-behavior: smooth;
-webkit-text-size-adjust: 100%;
height: calc(100% + env(safe-area-inset-top))
}
body {
display: flex;
overflow-y: auto;
overscroll-behavior-y: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-ms-overflow-style: scrollbar;
}
</style>
</head>
<body><noscript>
<form action="" style="background-color:#fff;position:fixed;top:0;left:0;right:0;bottom:0;z-index:9999">
<div style="font-size:18px;font-family:Helvetica,sans-serif;line-height:24px;margin:10%;width:80%">
<p>Oh no! It looks like JavaScript is not enabled in your browser.</p>
<p style="margin:20px 0"><button type="submit"
style="background-color:#4630eb;border-radius:100px;border:none;box-shadow:none;color:#fff;cursor:pointer;font-weight:700;line-height:20px;padding:6px 16px">Reload</button>
</p>
</div>
</form>
</noscript>
<div id="root"></div>
<script type="text/JavaScript">
####JS####
</script>
</body>
</html>